BitmapText#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)

BitmapText#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)

BitmapText#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)

BitmapText#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)

BitmapText#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)

BitmapText#maxWidth

maxWidth : number The maximum display width of this BitmapText in pixels. If BitmapText.text is longer than maxWidth then the lines will be automatically wrappedbased on the last whitespace character found in the line. If no whitespace was found then no wrapping will take place and consequently the maxWidth value will not be honored. Disable maxWidth by setting the value to 0. The maximum width of this BitmapText in pixels. Source code: gameobjects/BitmapText.js (Line 648)

BitmapText#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)

BitmapText#lifespan

lifespan : number The lifespan allows you to give a Game Object a lifespan in milliseconds. Once the Game Object is 'born' you can set this to a positive value. It is automatically decremented by the millisecond equivalent of game.time.physicsElapsed each frame.When it reaches zero it will call the kill method. Very handy for particles, bullets, collectibles, or any other short-lived entity. Inherited From Phaser.Component.LifeSpan#lifespan Source code: gameobjects/components/LifeSpan.js (

BitmapText#left

left : number The left coordinate of the Game Object.This is the same as x - offsetX. Inherited From Phaser.Component.Bounds#left Source code: gameobjects/components/Bounds.js (Line 102)

BitmapText#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