Physics.Ninja.Body#setZeroVelocity()

setZeroVelocity() Stops all movement of this body. Source code: physics/ninja/Body.js (Line 257)

Color.hueToColor()

<static> hueToColor(p, q, t) → {number} Converts a hue to an RGB color.Based on code by Michael Jackson (https://github.com/mjijackson) Parameters Name Type Description p number q number t number Returns number - The color component value. Source code: utils/Color.js (Line 396)

Device#webmVideo

webmVideo : boolean Can this device play webm video files? Source code: utils/Device.js (Line 442)

InputHandler#useHandCursor

useHandCursor : boolean On a desktop browser you can set the 'hand' cursor to appear when moving over the Sprite. Source code: input/InputHandler.js (Line 51)

Line#normalX

[readonly] normalX : number Gets the x component of the left-hand normal of this line. Source code: geom/Line.js (Line 515)

LoaderParser#LoaderParser

new LoaderParser() Phaser.LoaderParser parses data objects from Phaser.Loader that need more preparation before they can be inserted into the Cache. Source code: loader/LoaderParser.js (Line 12)

Color.getAlphaFloat()

<static> getAlphaFloat(color) → {number} Given a native color value (in the format 0xAARRGGBB) this will return the Alpha component as a value between 0 and 1. Parameters Name Type Description color number In the format 0xAARRGGBB. Returns number - The Alpha component of the color, will be between 0 and 1 (0 being no Alpha (opaque), 1 full Alpha (transparent)). Source code: utils/Color.js (Line 942)

Easing.Linear#None()

None(k) → {number} Linear Easing (no variation). Parameters Name Type Description k number The value to be tweened. Returns number - k. Source code: tween/Easing.js (Line 23)

ArrayUtils.findClosest()

<static> findClosest(value, arr) → {number} Snaps a value to the nearest value in an array.The result will always be in the range [first_value, last_value]. Parameters Name Type Description value number The search value arr Array.<number> The input array which must be sorted. Returns number - The nearest value found. Source code: utils/ArrayUtils.js (Line 172)

Camera.FOLLOW_LOCKON

[static] FOLLOW_LOCKON : number Source code: core/Camera.js (Line 189)