TileSprite#physicsType

[readonly] physicsType : number The const physics body type of this object. Source code: gameobjects/TileSprite.js (Line 78)

TileSprite#pendingDestroy

pendingDestroy : boolean A Game Object is that is pendingDestroy is flagged to have its destroy method called on the next logic update.You can set it directly to allow you to flag an object to be destroyed on its next update. This is extremely useful if you wish to destroy an object from within one of its own callbackssuch as with Buttons or other Input events. Inherited From Phaser.Component.Core#pendingDestroy Source code: gameobjects/components/Core.js (Line 259)

TileSprite#overlap()

overlap(displayObject) → {boolean} Checks to see if the bounds of this Game Object overlaps with the bounds of the given Display Object,which can be a Sprite, Image, TileSprite or anything that extends those such as Button or provides a getBounds method and result. This check ignores the hitArea property if set and runs a getBounds comparison on both objects to determine the result. Therefore it's relatively expensive to use in large quantities, i.e. with lots of Sprites at a high frequency.I

TileSprite#outOfCameraBoundsKill

outOfCameraBoundsKill : boolean If this and the autoCull property are both set to true, then the kill methodis called as soon as the Game Object leaves the camera bounds. Inherited From Phaser.Component.InWorld#outOfCameraBoundsKill Source code: gameobjects/components/InWorld.js (Line 115)

TileSprite#outOfBoundsKill

outOfBoundsKill : boolean If this and the checkWorldBounds property are both set to true then the kill method is called as soon as inWorld returns false. Inherited From Phaser.Component.InWorld#outOfBoundsKill Source code: gameobjects/components/InWorld.js (Line 106)

TileSprite#offsetY

[readonly] offsetY : number The amount the Game Object is visually offset from its y coordinate.This is the same as height * anchor.y.It will only be > 0 if anchor.y is not equal to zero. Inherited From Phaser.Component.Bounds#offsetY Source code: gameobjects/components/Bounds.js (Line 42)

TileSprite#offsetX

[readonly] offsetX : number The amount the Game Object is visually offset from its x coordinate.This is the same as width * anchor.x.It will only be > 0 if anchor.x is not equal to zero. Inherited From Phaser.Component.Bounds#offsetX Source code: gameobjects/components/Bounds.js (Line 24)

TileSprite#name

name : string A user defined name given to this Game Object.This value isn't ever used internally by Phaser, it is meant as a game level property. Inherited From Phaser.Component.Core#name Source code: gameobjects/components/Core.js (Line 150)

TileSprite#moveUp()

moveUp() → {PIXI.DisplayObject} Moves this Game Object up one place in its parents display list.This call has no effect if the Game Object is already at the top of the display list. If this Game Object hasn't been added to a custom Group then this method will move it one object up within the Game World,because the World is the root Group from which all Game Objects descend. Returns PIXI.DisplayObject - This instance. Inherited From Phaser.Component.BringToTop#moveUp Source code: game

TileSprite#moveDown()

moveDown() → {PIXI.DisplayObject} Moves this Game Object down one place in its parents display list.This call has no effect if the Game Object is already at the bottom of the display list. If this Game Object hasn't been added to a custom Group then this method will move it one object down within the Game World,because the World is the root Group from which all Game Objects descend. Returns PIXI.DisplayObject - This instance. Inherited From Phaser.Component.BringToTop#moveDown Source