Strip#addChildAt()

addChildAt(child, index) → {DisplayObject} Adds a child to the container at a specified index. If the index is out of bounds an error will be thrown Parameters Name Type Description child DisplayObject The child to add index Number The index to place the child in Returns DisplayObject - The child that was added. Inherited From PIXI.DisplayObjectContainer#addChildAt Source code: pixi/display/DisplayObjectContainer.js (Line 55)

TweenData#value

[readonly] value : number The current calculated value. Source code: tween/TweenData.js (Line 68)

Create.PALETTE_CGA

[static] PALETTE_CGA : number A 16 color CGA inspired palette. Source code: core/Create.js (Line 72)

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)