Rope#exists

exists : boolean Controls if this Game Object is processed by the core game loop.If this Game Object has a physics body it also controls if its physics body is updated or not.When exists is set to false it will remove its physics body from the physics world if it has one.It also toggles the visible property to false as well. Setting exists to true will add its physics body back in to the physics world, if it has one.It will also set the visible property to true. Inherited From Phaser.Compon

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

Bullet#getChildAt()

getChildAt(index) → {DisplayObject} Returns the child at the specified index Parameters Name Type Description index Number The index to get the child from Returns DisplayObject - The child at the given index, if any. Inherited From PIXI.DisplayObjectContainer#getChildAt Source code: pixi/display/DisplayObjectContainer.js (Line 153)

TileSprite#renderable

renderable : boolean Whether this sprite is renderable or not Inherited From PIXI.TilingSprite#renderable Default Value true Source code: pixi/extras/TilingSprite.js (Line 59)

Weapon.KILL_WORLD_BOUNDS

[static] KILL_WORLD_BOUNDS : integer A bulletKillType constant that automatically kills the bullets when they leave the World.bounds rectangle. Source code: plugins/weapon/WeaponPlugin.js (Line 424)

Bullet#inWorld

[readonly] inWorld : boolean Checks if the Game Objects bounds are within, or intersect at any point with the Game World bounds. Inherited From Phaser.Component.InWorld#inWorld Source code: gameobjects/components/InWorld.js (Line 129)

Sprite#ignoreChildInput

ignoreChildInput : boolean If ignoreChildInput is false it will allow this objects children to be considered as valid for Input events. If this property is true then the children will not be considered as valid for Input events. Note that this property isn't recursive: only immediate children are influenced, it doesn't scan further down. Inherited From PIXI.DisplayObjectContainer#ignoreChildInput Source code: pixi/display/DisplayObjectContainer.js (Line 26)

SpriteBatch#divideAll()

divideAll(property, amount, checkAlive, checkVisible) Divides the given property by the amount on all children in this group. Group.divideAll('x', 2) will half the child.x value for each child. Parameters Name Type Description property string The property to divide, for example 'body.velocity.x' or 'angle'. amount number The amount to divide the property by. If child.x = 100 then divideAll('x', 2) would make child.x = 50. checkAlive boolean If true the property will only be changed if

Particle#checkWorldBounds

checkWorldBounds : boolean If this is set to true the Game Object checks if it is within the World bounds each frame. When it is no longer intersecting the world bounds it dispatches the onOutOfBounds event. If it was previously out of bounds but is now intersecting the world bounds again it dispatches the onEnterBounds event. It also optionally kills the Game Object if outOfBoundsKill is true. When checkWorldBounds is enabled it forces the Game Object to calculate its full bounds every fram

Button#shader

shader : PIXI.AbstractFilter The shader that will be used to render this Sprite.Set to null to remove a current shader. Inherited From PIXI.Sprite#shader Default Value null Source code: pixi/display/Sprite.js (Line 93)