Text#fontWeights

fontWeights :array An array of the font weights values as specified by addFontWeight. Source code: gameobjects/Text.js (Line 111)

TilemapLayer#key

key : string | Phaser.RenderTexture | Phaser.BitmapData | Phaser.Video | PIXI.Texture The key of the image or texture used by this Game Object during rendering.If it is a string it's the string used to retrieve the texture from the Phaser Image Cache.It can also be an instance of a RenderTexture, BitmapData, Video or PIXI.Texture.If a Game Object is created without a key it is automatically assigned the key __default which is a 32x32 transparent PNG stored within the Cache.If a Game Object is

Tween#onComplete

onComplete : Phaser.Signal The onComplete event is fired when the Tween and all of its children completes. Does not fire if the Tween is set to loop or repeatAll(-1).It will be sent 2 parameters: the target object and this tween. Source code: tween/Tween.js (Line 107)

Text#fontWeight

fontWeight : string The weight of the font: 'normal', 'bold', or a valid CSS font weight. Source code: gameobjects/Text.js (Line 1785)

Text#updateShadow()

updateShadow(state) Sets the Shadow on the Text.context based on the Style settings, or disables it if not enabled.This is called automatically by Text.updateText. Parameters Name Type Description state boolean If true the shadow will be set to the Style values, otherwise it will be set to zero. Source code: gameobjects/Text.js (Line 652)

TilemapLayer#rayStepRate

rayStepRate : integer When ray-casting against tiles this is the number of steps it will jump. For larger tile sizes you can increase this to improve performance. Default Value 4 Source code: tilemap/TilemapLayer.js (Line 174)

Text#crop()

crop(rect, copy) Crop allows you to crop the texture being used to display this Game Object.Setting a crop rectangle modifies the core texture frame. The Game Object width and height properties will be adjusted accordingly. Cropping takes place from the top-left and can be modified in real-time either by providing an updated rectangle object to this method,or by modifying cropRect property directly and then calling updateCrop. The rectangle object given to this method can be either a Phaser.R

TileSprite#canvasBuffer

canvasBuffer :PIXICanvasBuffer The CanvasBuffer object that the tiled texture is drawn to. Inherited From PIXI.TilingSprite#canvasBuffer Source code: pixi/extras/TilingSprite.js (Line 95)

Text#top

top : number The y coordinate of the Game Object.This is the same as y - offsetY. Inherited From Phaser.Component.Bounds#top Source code: gameobjects/components/Bounds.js (Line 146)

FrameData#clone()

clone() → {Phaser.FrameData} Makes a copy of this FrameData including copies (not references) to all of the Frames it contains. Returns Phaser.FrameData - A clone of this object, including clones of the Frame objects it contains. Source code: animation/FrameData.js (Line 107)