Input#worldY

[readonly] worldY : number The world Y coordinate of the most recently active pointer. Source code: input/Input.js (Line 1121)

Device#iPhone4

iPhone4 : boolean Is running on iPhone4? Source code: utils/Device.js (Line 468)

Timer#timeCap

timeCap : number If the difference in time between two frame updates exceeds this value, the event times are reset to avoid catch-up situations. Source code: time/Timer.js (Line 84)

Cache#reloadSoundComplete()

reloadSoundComplete(key) Fires the onSoundUnlock event when the sound has completed reloading. Parameters Name Type Description key string The key of the asset within the cache. Source code: loader/Cache.js (Line 691)

Point#invert()

invert() → {Phaser.Point} Inverts the x and y values of this Point Returns Phaser.Point - This Point object. Source code: geom/Point.js (Line 56)

Physics.Arcade.Body#deltaX()

deltaX() → {number} Returns the delta x value. The difference between Body.x now and in the previous step. Returns number - The delta value. Positive if the motion was to the right, negative if to the left. Source code: physics/arcade/Body.js (Line 1269)

Physics.Arcade.Body#stopMovement()

stopMovement(stopVelocity) If this Body is moving as a result of a call to moveTo or moveFrom (i.e. ithas Body.isMoving true), then calling this method will stop the movement beforeeither the duration or distance counters expire. The onMoveComplete signal is dispatched. Parameters Name Type Argument Description stopVelocity boolean <optional> Should the Body.velocity be set to zero? Source code: physics/arcade/Body.js (Line 681)

Sound#autoplay

autoplay : boolean Boolean indicating whether the sound should start automatically. Source code: sound/Sound.js (Line 57)

Physics.Arcade#intersects()

intersects(body1, body2) → {boolean} Check for intersection against two bodies. Parameters Name Type Description body1 Phaser.Physics.Arcade.Body The first Body object to check. body2 Phaser.Physics.Arcade.Body The second Body object to check. Returns boolean - True if they intersect, otherwise false. Source code: physics/arcade/World.js (Line 1061)

Physics.Arcade.Body#right

[readonly] right : number The right value of this Body (same as Body.x + Body.width) Source code: physics/arcade/Body.js (Line 1341)