Game#onResume

onResume : Phaser.Signal This event is fired when the game resumes from a paused state. Source code: core/Game.js (Line 306)

Rope#segments

segments The segments that make up the rope body as an array of Phaser.Rectangles Properties: Name Type Description updateAnimation Array.<Phaser.Rectangles> Returns an array of Phaser.Rectangles that represent the segments of the given rope Source code: gameobjects/Rope.js (Line 175)

Physics.P2.BodyDebug#getFirstDead()

getFirstDead(createIfNull, x, y, key, frame) → {DisplayObject} Get the first child that is dead (child.alive === false). This is handy for checking if everything has been wiped out and adding to the pool as needed. You can use the optional argument createIfNull to create a new Game Object if no dead ones were found in this Group. It works by calling Group.create passing it the parameters given to this method, and returning the new child. If a child was found , createIfNull is false and you pr

Device#fullscreen

fullscreen : boolean Does the browser support the Full Screen API? Source code: utils/Device.js (Line 506)

Frame#trimmed

trimmed : boolean Was it trimmed when packed? Source code: animation/Frame.js (Line 82)

Component.PhysicsBody#y

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

Physics.P2#paused

paused : boolean The paused state of the P2 World. Source code: physics/p2/World.js (Line 72)

TileSprite#smoothed

smoothed : boolean Enable or disable texture smoothing for this Game Object. It only takes effect if the Game Object is using an image based texture. Smoothing is enabled by default. Inherited From Phaser.Component.Smoothed#smoothed Source code: gameobjects/components/Smoothed.js (Line 25)

Physics.Ninja.Circle#radius

radius : number The radius of this circle shape. Source code: physics/ninja/Circle.js (Line 44)

Utils.Debug#spriteInputInfo()

spriteInputInfo(sprite, x, y, color) Render Sprite Input Debug information. Parameters Name Type Argument Default Description sprite Phaser.Sprite | Phaser.Image The sprite to display the input data for. x number X position of the debug info to be rendered. y number Y position of the debug info to be rendered. color string <optional> 'rgb(255,255,255)' color of the debug info to be rendered. (format is css color string). Source code: utils/Debug.js (Line 391)