Rope#alive

alive : boolean A useful flag to control if the Game Object is alive or dead. This is set automatically by the Health components damage method should the object run out of health.Or you can toggle it via your game code. This property is mostly just provided to be used by your game - it doesn't effect rendering or logic updates.However you can use Group.getFirstAlive in conjunction with this property for fast object pooling and recycling. Inherited From Phaser.Component.LifeSpan#alive Defau

State#create()

create() create is called once preload has completed, this includes the loading of any assets from the Loader.If you don't have a preload method then create is the first method called in your State. Source code: core/State.js (Line 152)

Mouse#onMouseOutGlobal()

onMouseOutGlobal(event) The internal method that handles the mouse out event from the window. Parameters Name Type Description event MouseEvent The native event from the browser. This gets stored in Mouse.event. Source code: input/Mouse.js (Line 408)

Group#z

[readonly] z : integer The z-depth value of this object within its parent container/Group - the World is a Group as well.This value must be unique for each child in a Group. Source code: core/Group.js (Line 57)

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

RetroFont#characterPerRow

characterPerRow : number The number of characters per row in the font set. Source code: gameobjects/RetroFont.js (Line 60)

Particle#name

name : string A user defined name given to this Game Object.This value isn't ever used internally by Phaser, it is meant as a game level property. Inherited From Phaser.Component.Core#name Source code: gameobjects/components/Core.js (Line 150)

Physics.Arcade.Body#movementCallback

movementCallback : Function Optional callback. If set, invoked during the running of moveTo or moveFrom events. Source code: physics/arcade/Body.js (Line 467)

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

Group#addMultiple()

addMultiple(children, silent) → {Array.<DisplayObject> | Phaser.Group} Adds an array of existing Display Objects to this Group. The Display Objects are automatically added to the top of this Group, and will render on-top of everything already in this Group. As well as an array you can also pass another Group as the first argument. In this case all of the children from thatGroup will be removed from it and added into this Group. If Group.enableBody is set, then a physics body will be cre