Touch#onTouchMove()

onTouchMove(event) The handler for the touchmove events. Parameters Name Type Description event TouchEvent The native event from the browser. This gets stored in Touch.event. Source code: input/Touch.js (Line 376)

Physics.Ninja.Body#height

[readonly] height : number The height of this Body Source code: physics/ninja/Body.js (Line 483)

Physics.P2#onSpringAdded

onSpringAdded : Phaser.Signal This signal is dispatched when a Spring is added to the World. It sends 1 argument: spring which is either a Phaser.Physics.P2.Spring, p2.LinearSpring or p2.RotationalSpring that was added to the world. Source code: physics/p2/World.js (Line 115)

Group#bottom

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

Animation#frame

frame : number Gets or sets the current frame index and updates the Texture Cache for display. Source code: animation/Animation.js (Line 739)

TweenData#to()

to(properties, duration, ease, delay, repeat, yoyo) → {Phaser.TweenData} Sets this tween to be a to tween on the properties given. A to tween starts at the current value and tweens to the destination value given.For example a Sprite with an x coordinate of 100 could be tweened to x 200 by giving a properties object of { x: 200 }. Parameters Name Type Argument Default Description properties object The properties you want to tween, such as Sprite.x or Sound.volume. Given as a JavaScript

Frame#bottom

bottom : number The bottom of the frame (y + height). Source code: animation/Frame.js (Line 126)

Physics.Ninja#overlap()

overlap(object1, object2, overlapCallback, processCallback, callbackContext) → {boolean} Checks for overlaps between two game objects. The objects can be Sprites, Groups or Emitters.You can perform Sprite vs. Sprite, Sprite vs. Group and Group vs. Group overlap checks.Unlike collide the objects are NOT automatically separated or have any physics applied, they merely test for overlap results.The second parameter can be an array of objects, of differing types. Parameters Name Type Argument Def

SpriteBatch#forEachDead()

forEachDead(callback, callbackContext, args) Call a function on each dead child in this group. See forEach for details. Parameters Name Type Argument Default Description callback function The function that will be called for each applicable child. The child will be passed as the first argument. callbackContext object The context in which the function should be called (usually 'this'). args any <optional> <repeatable> (none) Additional arguments to pass to the cal

TweenData#easingFunction

easingFunction : Function The easing function used for the Tween. Default Value Phaser.Easing.Default Source code: tween/TweenData.js (Line 129)