TileSprite#resetFrame()

resetFrame() Resets the texture frame dimensions that the Game Object uses for rendering. Inherited From Phaser.Component.LoadTexture#resetFrame Source code: gameobjects/components/LoadTexture.js (Line 232)

TileSprite#reset()

reset(x, y) → {Phaser.TileSprite} Resets the TileSprite. This places the TileSprite at the given x/y world coordinates, resets the tilePosition and thensets alive, exists, visible and renderable all to true. Also resets the outOfBounds state.If the TileSprite has a physics body that too is reset. Parameters Name Type Description x number The x coordinate (in world space) to position the Sprite at. y number The y coordinate (in world space) to position the Sprite at. Returns Phaser.Ti

TileSprite#renderOrderID

[readonly] renderOrderID : number The render order ID is used internally by the renderer and Input Manager and should not be modified.This property is mostly used internally by the renderers, but is exposed for the use of plugins. Inherited From Phaser.Component.Core#renderOrderID Source code: gameobjects/components/Core.js (Line 240)

TileSprite#renderable

renderable : boolean Whether this sprite is renderable or not Inherited From PIXI.TilingSprite#renderable Default Value true Source code: pixi/extras/TilingSprite.js (Line 59)

TileSprite#removeChildren()

removeChildren(beginIndex, endIndex) Removes all children from this container that are within the begin and end indexes. Parameters Name Type Description beginIndex Number The beginning position. Default value is 0. endIndex Number The ending position. Default value is size of the container. Inherited From PIXI.DisplayObjectContainer#removeChildren Source code: pixi/display/DisplayObjectContainer.js (Line 213)

TileSprite#removeChildAt()

removeChildAt(index) → {DisplayObject} Removes a child from the specified index position. Parameters Name Type Description index Number The index to get the child from Returns DisplayObject - The child that was removed. Inherited From PIXI.DisplayObjectContainer#removeChildAt Source code: pixi/display/DisplayObjectContainer.js (Line 191)

TileSprite#removeChild()

removeChild(child) → {DisplayObject} Removes a child from the container. Parameters Name Type Description child DisplayObject The DisplayObject to remove Returns DisplayObject - The child that was removed. Inherited From PIXI.DisplayObjectContainer#removeChild Source code: pixi/display/DisplayObjectContainer.js (Line 171)

TileSprite#refreshTexture

refreshTexture : boolean If true the TilingSprite will run generateTexture on its next render pass.This is set by the likes of Phaser.LoadTexture.setFrame. Inherited From PIXI.TilingSprite#refreshTexture Default Value true Source code: pixi/extras/TilingSprite.js (Line 119)

TileSprite#previousRotation

[readonly] previousRotation : number The rotation the Game Object was in set to in the previous frame. Value is in radians. Inherited From Phaser.Component.Core#previousRotation Source code: gameobjects/components/Core.js (Line 232)

TileSprite#previousPosition

[readonly] previousPosition : Phaser.Point The position the Game Object was located in the previous frame. Inherited From Phaser.Component.Core#previousPosition Source code: gameobjects/components/Core.js (Line 225)