new Cache(game)
Phaser.Cache constructor.
Parameters:
Name | Type | Description |
---|---|---|
game |
Phaser.Game | A reference to the currently running game. |
- Source:
Members
-
<static, constant> BINARY :number
-
Type:
- number
- Source:
-
<static, constant> BITMAPDATA :number
-
Type:
- number
- Source:
-
<static, constant> BITMAPFONT :number
-
Type:
- number
- Source:
-
<static, constant> CANVAS :number
-
Type:
- number
- Source:
-
<static, constant> IMAGE :number
-
Type:
- number
- Source:
-
<static, constant> JSON :number
-
Type:
- number
- Source:
-
<static, constant> PHYSICS :number
-
Type:
- number
- Source:
-
<static, constant> SOUND :number
-
Type:
- number
- Source:
-
<static, constant> TEXT :number
-
Type:
- number
- Source:
-
<static, constant> TEXTURE :number
-
Type:
- number
- Source:
-
<static, constant> TILEMAP :number
-
Type:
- number
- Source:
-
game
-
- Source:
Properties:
Name Type Description game
Phaser.Game Local reference to game.
-
onSoundUnlock
-
- Source:
Properties:
Name Type Description onSoundUnlock
Phaser.Signal This event is dispatched when the sound system is unlocked via a touch event on cellular devices.
Methods
-
addBinary(key, binaryData)
-
Add a binary object in to the cache.
Parameters:
Name Type Description key
string Asset key for this binary data.
binaryData
object The binary object to be addded to the cache.
- Source:
-
addBitmapData(key, bitmapData) → {Phaser.BitmapData}
-
Add a BitmapData object in to the cache.
Parameters:
Name Type Description key
string Asset key for this BitmapData.
bitmapData
Phaser.BitmapData The BitmapData object to be addded to the cache.
- Source:
Returns:
The BitmapData object to be addded to the cache.
- Type
- Phaser.BitmapData
-
addBitmapFont(key, url, data, xmlData, xSpacing, ySpacing)
-
Add a new Bitmap Font to the Cache.
Parameters:
Name Type Argument Default Description key
string The unique key by which you will reference this object.
url
string URL of this font xml file.
data
object Extra font data.
xmlData
object Texture atlas frames data.
xSpacing
number <optional>
0 If you'd like to add additional horizontal spacing between the characters then set the pixel value here.
ySpacing
number <optional>
0 If you'd like to add additional vertical spacing between the lines then set the pixel value here.
- Source:
-
addCanvas(key, canvas, context)
-
Add a new canvas object in to the cache.
Parameters:
Name Type Description key
string Asset key for this canvas.
canvas
HTMLCanvasElement Canvas DOM element.
context
CanvasRenderingContext2D Render context of this canvas.
- Source:
-
<protected> addDefaultImage()
-
Adds a default image to be used in special cases such as WebGL Filters. Is mapped to the key __default.
- Source:
-
addImage(key, url, data)
-
Add a new image.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
url
string URL of this image file.
data
object Extra image data.
- Source:
-
addJSON(key, url, data)
-
Add a new json object into the cache.
Parameters:
Name Type Description key
string Asset key for the text data.
url
string URL of this text data file.
data
object Extra text data.
- Source:
-
<protected> addMissingImage()
-
Adds an image to be used when a key is wrong / missing. Is mapped to the key __missing.
- Source:
-
addRenderTexture(key, texture)
-
Add a new Phaser.RenderTexture in to the cache.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
texture
Phaser.Texture The texture to use as the base of the RenderTexture.
- Source:
-
addSound(key, url, data, webAudio, audioTag)
-
Add a new sound.
Parameters:
Name Type Description key
string Asset key for the sound.
url
string URL of this sound file.
data
object Extra sound data.
webAudio
boolean True if the file is using web audio.
audioTag
boolean True if the file is using legacy HTML audio.
- Source:
-
addSpriteSheet(key, url, data, frameWidth, frameHeight, frameMax, margin, spacing)
-
Add a new sprite sheet in to the cache.
Parameters:
Name Type Argument Default Description key
string The unique key by which you will reference this object.
url
string URL of this sprite sheet file.
data
object Extra sprite sheet data.
frameWidth
number Width of the sprite sheet.
frameHeight
number Height of the sprite sheet.
frameMax
number <optional>
-1 How many frames stored in the sprite sheet. If -1 then it divides the whole sheet evenly.
margin
number <optional>
0 If the frames have been drawn with a margin, specify the amount here.
spacing
number <optional>
0 If the frames have been drawn with spacing between them, specify the amount here.
- Source:
-
addText(key, url, data)
-
Add a new text data.
Parameters:
Name Type Description key
string Asset key for the text data.
url
string URL of this text data file.
data
object Extra text data.
- Source:
-
addTextureAtlas(key, url, data, atlasData, format)
-
Add a new texture atlas to the Cache.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
url
string URL of this texture atlas file.
data
object Extra texture atlas data.
atlasData
object Texture atlas frames data.
format
number The format of the texture atlas.
- Source:
-
addTilemap(key, url, mapData, format)
-
Add a new tilemap to the Cache.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
url
string URL of the tilemap image.
mapData
object The tilemap data object (either a CSV or JSON file).
format
number The format of the tilemap data.
- Source:
-
addTilemap(key, url, JSONData, format)
-
Add a new physics data object to the Cache.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
url
string URL of the physics json data.
JSONData
object The physics data object (a JSON file).
format
number The format of the physics data.
- Source:
-
checkImageKey(key) → {boolean}
-
Checks if an image key exists.
Parameters:
Name Type Description key
string Asset key of the image to check is in the Cache.
- Source:
Returns:
True if the key exists, otherwise false.
- Type
- boolean
-
decodedSound(key, data)
-
Add a new decoded sound.
Parameters:
Name Type Description key
string Asset key for the sound.
data
object Extra sound data.
- Source:
-
destroy()
-
Clears the cache. Removes every local cache object reference.
- Source:
-
getBinary(key) → {object}
-
Get binary data by key.
Parameters:
Name Type Description key
string Asset key of the binary data object to retrieve from the Cache.
- Source:
Returns:
The binary data object.
- Type
- object
-
getBitmapData(key) → {Phaser.BitmapData}
-
Get a BitmapData object from the cache by its key.
Parameters:
Name Type Description key
string Asset key of the BitmapData object to retrieve from the Cache.
- Source:
Returns:
The requested BitmapData object if found, or null if not.
- Type
- Phaser.BitmapData
-
getBitmapFont(key) → {Phaser.BitmapFont}
-
Get a BitmapFont object from the cache by its key.
Parameters:
Name Type Description key
string Asset key of the BitmapFont object to retrieve from the Cache.
- Source:
Returns:
The requested BitmapFont object if found, or null if not.
- Type
- Phaser.BitmapFont
-
getCanvas(key) → {object}
-
Get a canvas object from the cache by its key.
Parameters:
Name Type Description key
string Asset key of the canvas to retrieve from the Cache.
- Source:
Returns:
The canvas object.
- Type
- object
-
getFrame(key) → {Phaser.Frame}
-
Get a single frame by key. You'd only do this to get the default Frame created for a non-atlas/spritesheet image.
Parameters:
Name Type Description key
string Asset key of the frame data to retrieve from the Cache.
- Source:
Returns:
The frame data.
- Type
- Phaser.Frame
-
getFrameByIndex(key) → {Phaser.Frame}
-
Get a single frame out of a frameData set by key.
Parameters:
Name Type Description key
string Asset key of the frame data to retrieve from the Cache.
- Source:
Returns:
The frame object.
- Type
- Phaser.Frame
-
getFrameByName(key) → {Phaser.Frame}
-
Get a single frame out of a frameData set by key.
Parameters:
Name Type Description key
string Asset key of the frame data to retrieve from the Cache.
- Source:
Returns:
The frame object.
- Type
- Phaser.Frame
-
getFrameData(key) → {Phaser.FrameData}
-
Get frame data by key.
Parameters:
Name Type Description key
string Asset key of the frame data to retrieve from the Cache.
- Source:
Returns:
The frame data.
- Type
- Phaser.FrameData
-
getImage(key) → {object}
-
Get image data by key.
Parameters:
Name Type Description key
string Asset key of the image to retrieve from the Cache.
- Source:
Returns:
The image data.
- Type
- object
-
getJSON(key) → {object}
-
Get a JSON object by key from the cache.
Parameters:
Name Type Description key
string Asset key of the json object to retrieve from the Cache.
- Source:
Returns:
The JSON object.
- Type
- object
-
getKeys(type) → {Array}
-
Gets all keys used by the Cache for the given data type.
Parameters:
Name Type Argument Default Description type
number <optional>
Phaser.Cache.IMAGE The type of Cache keys you wish to get. Can be Cache.CANVAS, Cache.IMAGE, Cache.SOUND, etc.
- Source:
Returns:
The array of item keys.
- Type
- Array
-
getPhysicsData(key, object) → {object}
-
Get a physics data object from the cache by its key. You can get either the entire data set or just a single object from it.
Parameters:
Name Type Argument Default Description key
string Asset key of the physics data object to retrieve from the Cache.
object
string <optional>
null If specified it will return just the physics object that is part of the given key, if null it will return them all.
- Source:
Returns:
The requested physics object data if found.
- Type
- object
-
getSound(key) → {Phaser.Sound}
-
Get sound by key.
Parameters:
Name Type Description key
string Asset key of the sound to retrieve from the Cache.
- Source:
Returns:
The sound object.
- Type
- Phaser.Sound
-
getSoundData(key) → {object}
-
Get sound data by key.
Parameters:
Name Type Description key
string Asset key of the sound to retrieve from the Cache.
- Source:
Returns:
The sound data.
- Type
- object
-
getText(key) → {object}
-
Get text data by key.
Parameters:
Name Type Description key
string Asset key of the text data to retrieve from the Cache.
- Source:
Returns:
The text data.
- Type
- object
-
getTexture(key) → {Phaser.RenderTexture}
-
Get a RenderTexture by key.
Parameters:
Name Type Description key
string Asset key of the RenderTexture to retrieve from the Cache.
- Source:
Returns:
The RenderTexture object.
- Type
- Phaser.RenderTexture
-
getTextureFrame(key) → {Phaser.Frame}
-
Get a single texture frame by key. You'd only do this to get the default Frame created for a non-atlas/spritesheet image.
Parameters:
Name Type Description key
string Asset key of the frame to retrieve from the Cache.
- Source:
Returns:
The frame data.
- Type
- Phaser.Frame
-
getTilemap(key) → {Object}
-
Get tilemap data by key.
Parameters:
Name Type Description key
string Asset key of the tilemap data to retrieve from the Cache.
- Source:
Returns:
The raw tilemap data in CSV or JSON format.
- Type
- Object
-
isSoundDecoded(key) → {boolean}
-
Check if the given sound has finished decoding.
Parameters:
Name Type Description key
string Asset key of the sound in the Cache.
- Source:
Returns:
The decoded state of the Sound object.
- Type
- boolean
-
isSoundReady(key) → {boolean}
-
Check if the given sound is ready for playback. A sound is considered ready when it has finished decoding and the device is no longer touch locked.
Parameters:
Name Type Description key
string Asset key of the sound in the Cache.
- Source:
Returns:
True if the sound is decoded and the device is not touch locked.
- Type
- boolean
-
isSpriteSheet(key) → {boolean}
-
Check whether an image asset is sprite sheet or not.
Parameters:
Name Type Description key
string Asset key of the sprite sheet you want.
- Source:
Returns:
True if the image is a sprite sheet.
- Type
- boolean
-
reloadSound(key)
-
Reload a sound.
Parameters:
Name Type Description key
string Asset key for the sound.
- Source:
-
reloadSoundComplete(key)
-
Fires the onSoundUnlock event when the sound has completed reloading.
Parameters:
Name Type Description key
string Asset key for the sound.
- Source:
-
removeBinary(key)
-
Removes a binary file from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeBitmapData(key)
-
Removes a bitmap data from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeBitmapFont(key)
-
Removes a bitmap font from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeCanvas(key)
-
Removes a canvas from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeImage(key)
-
Removes an image from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeJSON(key)
-
Removes a json object from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removePhysics(key)
-
Removes a physics data file from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeSound(key)
-
Removes a sound from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeText(key)
-
Removes a text from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
removeTilemap(key)
-
Removes a tilemap from the cache.
Parameters:
Name Type Description key
string Key of the asset you want to remove.
- Source:
-
updateFrameData(key, frameData)
-
Replaces a set of frameData with a new Phaser.FrameData object.
Parameters:
Name Type Description key
string The unique key by which you will reference this object.
frameData
number The new FrameData.
- Source:
-
updateSound(key)
-
Updates the sound object in the cache.
Parameters:
Name Type Description key
string Asset key for the sound.
- Source: