Bullet#addChild()

addChild(child) → {DisplayObject} Adds a child to the container. Parameters Name Type Description child DisplayObject The DisplayObject to add to the container Returns DisplayObject - The child that was added. Inherited From PIXI.DisplayObjectContainer#addChild Source code: pixi/display/DisplayObjectContainer.js (Line 42)

BitmapText#z

[readonly] z : number The z depth of this Game Object within its parent Group.No two objects in a Group can have the same z value.This value is adjusted automatically whenever the Group hierarchy changes.If you wish to re-order the layering of a Game Object then see methods like Group.moveUp or Group.bringToTop. Inherited From Phaser.Component.Core#z Source code: gameobjects/components/Core.js (Line 177)

BitmapText#y

y : number The position of the Game Object on the y axis relative to the local coordinates of the parent. Inherited From Phaser.Component.PhysicsBody#y Source code: gameobjects/components/PhysicsBody.js (Line 124)

BitmapText#x

x : number The position of the Game Object on the x axis relative to the local coordinates of the parent. Inherited From Phaser.Component.PhysicsBody#x Source code: gameobjects/components/PhysicsBody.js (Line 98)

BitmapText#world

world : Phaser.Point The world coordinates of this Game Object in pixels.Depending on where in the display list this Game Object is placed this value can differ from position,which contains the x/y coordinates relative to the Game Objects parent. Inherited From Phaser.Component.Core#world Source code: gameobjects/components/Core.js (Line 211)

BitmapText#width

width : number The width of the displayObjectContainer, setting this will actually modify the scale to achieve the value set Inherited From PIXI.DisplayObjectContainer#width Source code: pixi/display/DisplayObjectContainer.js (Line 571)

BitmapText#update()

update() Override this method in your own custom objects to handle any update requirements.It is called immediately after preUpdate and before postUpdate.Remember if this Game Object has any children you should call update on those too. Inherited From Phaser.Component.Core#update Source code: gameobjects/components/Core.js (Line 328)

BitmapText#type

[readonly] type : number The const type of this object. Source code: gameobjects/BitmapText.js (Line 69)

BitmapText#top

top : number The y coordinate of the Game Object.This is the same as y - offsetY. Inherited From Phaser.Component.Bounds#top Source code: gameobjects/components/Bounds.js (Line 146)

BitmapText#tint

tint : number The tint applied to the BitmapText. This is a hex value. Set to white to disable (0xFFFFFF) Source code: gameobjects/BitmapText.js (Line 557)