Text#canvas

canvas :HTMLCanvasElement The canvas element that the text is rendered. Source code: gameobjects/Text.js (Line 86)

Text#cameraOffset

cameraOffset : Phaser.Point The x/y coordinate offset applied to the top-left of the camera that this Game Object will be drawn at if fixedToCamera is true. The values are relative to the top-left of the camera view and in addition to any parent of the Game Object on the display list. Inherited From Phaser.Component.FixedToCamera#cameraOffset Source code: gameobjects/components/FixedToCamera.js (Line 86)

Text#bringToTop()

bringToTop() → {PIXI.DisplayObject} Brings this Game Object to the top of its parents display list.Visually this means it will render over the top of any old child in the same Group. If this Game Object hasn't been added to a custom Group then this method will bring it to the top of 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#bringToTop Source code: gameo

Text#boundsAlignV

boundsAlignV : string Vertical alignment of the text within the textBounds. Can be: 'top', 'middle' or 'bottom'. Source code: gameobjects/Text.js (Line 1969)

Text#boundsAlignH

boundsAlignH : string Horizontal alignment of the text within the textBounds. Can be: 'left', 'center' or 'right'. Source code: gameobjects/Text.js (Line 1946)

Text#bottom

bottom : number The sum of the y and height properties.This is the same as y + height - offsetY. Inherited From Phaser.Component.Bounds#bottom Source code: gameobjects/components/Bounds.js (Line 168)

Text#body

body : Phaser.Physics.Arcade.Body | Phaser.Physics.P2.Body | Phaser.Physics.Ninja.Body | null body is the Game Objects physics body. Once a Game Object is enabled for physics you access all associatedproperties and methods via it. By default Game Objects won't add themselves to any physics system and their body property will be null. To enable this Game Object for physics you need to call game.physics.enable(object, system) where object is this objectand system is the Physics system you are u

Text#blendMode

blendMode : number The blend mode to be applied to the sprite. Set to PIXI.blendModes.NORMAL to remove any blend mode. Warning: You cannot have a blend mode and a filter active on the same Sprite. Doing so will render the sprite invisible. Inherited From PIXI.Sprite#blendMode Default Value PIXI.blendModes.NORMAL; Source code: pixi/display/Sprite.js (Line 82)

Text#autoRound

autoRound : boolean Should the linePositionX and Y values be automatically rounded before rendering the Text?You may wish to enable this if you want to remove the effect of sub-pixel aliasing from text. Source code: gameobjects/Text.js (Line 119)

Text#autoCull

autoCull : boolean A Game Object with autoCull set to true will check its bounds against the World Camera every frame.If it is not intersecting the Camera bounds at any point then it has its renderable property set to false.This keeps the Game Object alive and still processing updates, but forces it to skip the render step entirely. This is a relatively expensive operation, especially if enabled on hundreds of Game Objects. So enable it only if you know it's required,or you have tested perfor