Physics.P2.Spring#data

data :p2.LinearSpring The actual p2 spring object. Source code: physics/p2/Spring.js (Line 70)

Physics.P2.BodyDebug#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)

global#DisplayObject()

DisplayObject A display object is any object that can be rendered in the Phaser/pixi.js scene graph. This includes Phaser.Group (groups are display objects!),Phaser.Sprite, Phaser.Button, Phaser.Textas well as PIXI.DisplayObject and all derived types. Source code: core/Group.js (Line 2958)

FlexGrid#manager

manager : Phaser.ScaleManager A reference to the ScaleManager. Source code: core/FlexGrid.js (Line 31)

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

Particles.Arcade.Emitter#cursor

cursor : DisplayObject The current display object that the group cursor is pointing to, if any. (Can be set manually.) The cursor is a way to iterate through the children in a Group using next and previous. Inherited From Phaser.Group#cursor Source code: core/Group.js (Line 138)

TilemapLayer#tint

tint : number The tint applied to the sprite. This is a hex value. A value of 0xFFFFFF will remove any tint effect. Inherited From PIXI.Sprite#tint Default Value 0xFFFFFF Source code: pixi/display/Sprite.js (Line 54)

LinkedList#prev

prev : Object Previous element in the list. Source code: utils/LinkedList.js (Line 32)

Group#top

top : number The top coordinate of this Group. It is derived by calling getBounds, calculating the Groups dimensions based on itsvisible children. Source code: core/Group.js (Line 2817)

SpriteBatch#removeFromHash()

removeFromHash(child) → {boolean} Removes a child of this Group from the hash array.This call will return false if the child is not in the hash. Parameters Name Type Description child DisplayObject The display object to remove from this Groups hash. Must be a member of this Group and in the hash. Returns boolean - True if the child was successfully removed from the hash, otherwise false. Inherited From Phaser.Group#removeFromHash Source code: core/Group.js (Line 464)