Text#destroyPhase

[readonly] destroyPhase : boolean As a Game Object runs through its destroy method this flag is set to true,and can be checked in any sub-systems or plugins it is being destroyed from. Inherited From Phaser.Component.Destroy#destroyPhase Source code: gameobjects/components/Destroy.js (Line 22)

Text#destroy()

destroy(destroyChildren) Destroy this Text object, removing it from the group it belongs to. Parameters Name Type Argument Default Description destroyChildren boolean <optional> true Should every child of this object have its destroy method called? Source code: gameobjects/Text.js (Line 217)

Text#deltaZ

[readonly] deltaZ : number Returns the delta z value. The difference between rotation now and in the previous frame. The delta value. Inherited From Phaser.Component.Delta#deltaZ Source code: gameobjects/components/Delta.js (Line 58)

Text#deltaY

[readonly] deltaY : number Returns the delta y value. The difference between world.y now and in the previous frame. The value will be positive if the Game Object has moved down or negative if up. Inherited From Phaser.Component.Delta#deltaY Source code: gameobjects/components/Delta.js (Line 42)

Text#deltaX

[readonly] deltaX : number Returns the delta x value. The difference between world.x now and in the previous frame. The value will be positive if the Game Object has moved to the right or negative if to the left. Inherited From Phaser.Component.Delta#deltaX Source code: gameobjects/components/Delta.js (Line 24)

Text#debug

debug : boolean A debug flag designed for use with Game.enableStep. Inherited From Phaser.Component.Core#debug Source code: gameobjects/components/Core.js (Line 218)

Text#data

data : Object An empty Object that belongs to this Game Object.This value isn't ever used internally by Phaser, but may be used by your own code, orby Phaser Plugins, to store data that needs to be associated with the Game Object,without polluting the Game Object directly. Inherited From Phaser.Component.Core#data Default Value {} Source code: gameobjects/components/Core.js (Line 160)

Text#damage

damage Damages the Game Object. This removes the given amount of health from the health property. If health is taken below or is equal to zero then the kill method is called. Inherited From Phaser.Component.Health#damage Source code: gameobjects/components/Health.js (Line 46)

Text#cssFont

cssFont : string Change the font used. This is equivalent of the font property specified to setStyle, exceptthat unlike using setStyle this will not change any current font fill/color settings. The CSS font string can also be individually altered with the font, fontSize, fontWeight, fontStyle, and fontVariant properties. Source code: gameobjects/Text.js (Line 1682)

Text#cropRect

cropRect : Phaser.Rectangle The Rectangle used to crop the texture this Game Object uses.Set this property via crop.If you modify this property directly you must call updateCrop in order to have the change take effect. Inherited From Phaser.Component.Crop#cropRect Source code: gameobjects/components/Crop.js (Line 24)