Cache#checkVideoKey()

checkVideoKey(key) → {boolean} Checks if the given key exists in the Video Cache. Parameters Name Type Description key string The key of the asset within the cache. Returns boolean - True if the key exists in the cache, otherwise false. Source code: loader/Cache.js (Line 980)

BitmapText#getChildAt()

getChildAt(index) → {DisplayObject} Returns the child at the specified index Parameters Name Type Description index Number The index to get the child from Returns DisplayObject - The child at the given index, if any. Inherited From PIXI.DisplayObjectContainer#getChildAt Source code: pixi/display/DisplayObjectContainer.js (Line 153)

FlexLayer#topRight

topRight : Phaser.Point Source code: core/FlexLayer.js (Line 71)

Utils.Debug#body()

body(sprite, color, filled) Render a Sprites Physics body if it has one set. The body is rendered as a filled or stroked rectangle.This only works for Arcade Physics, Ninja Physics (AABB and Circle only) and Box2D Physics bodies.To display a P2 Physics body you should enable debug mode on the body when creating it. Parameters Name Type Argument Default Description sprite Phaser.Sprite The Sprite who's body will be rendered. color string <optional> 'rgba(0,255,0,0.4)' Color o

Point.parse()

<static> parse(obj, xProp, yProp) → {Phaser.Point} Parses an object for x and/or y properties and returns a new Phaser.Point with matching values.If the object doesn't contain those properties a Point with x/y of zero will be returned. Parameters Name Type Argument Default Description obj object The object to parse. xProp string <optional> 'x' The property used to set the Point.x value. yProp string <optional> 'y' The property used to set the Point.y value.

Utils.Debug#soundInfo()

soundInfo(sound, x, y, color) Render Sound information, including decoded state, duration, volume and more. Parameters Name Type Argument Default Description sound Phaser.Sound The sound object to debug. 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 254)

Rope#left

left : number The left coordinate of the Game Object.This is the same as x - offsetX. Inherited From Phaser.Component.Bounds#left Source code: gameobjects/components/Bounds.js (Line 102)

Physics.Ninja.Tile#width

[readonly] width : number The width. Source code: physics/ninja/Tile.js (Line 83)

Keyboard#destroy()

destroy() Stops the Keyboard event listeners from running (keydown and keyup). They are removed from the window.Also clears all key captures and currently created Key objects. Source code: input/Keyboard.js (Line 277)

Input#pointer2

pointer2 : Phaser.Pointer A Pointer object. Source code: input/Input.js (Line 165)