FlexLayer#removeChild()

removeChild(child) → {DisplayObject} Removes a child from the container. Parameters Name Type Description child DisplayObject The DisplayObject to remove Returns DisplayObject - The child that was removed. Inherited From PIXI.DisplayObjectContainer#removeChild Source code: pixi/display/DisplayObjectContainer.js (Line 171)

TilemapLayer#setTexture()

setTexture(texture, destroy) Sets the texture of the sprite. Be warned that this doesn't remove or destroy the previoustexture this Sprite was using. Parameters Name Type Argument Default Description texture PIXI.Texture The PIXI texture that is displayed by the sprite destroy Boolean <optional> false Call Texture.destroy on the current texture before replacing it with the new one? Inherited From PIXI.Sprite#setTexture Source code: pixi/display/Sprite.js (Line 163)

World#children

[readonly] children : Array.<DisplayObject> [read-only] The array of children of this container. Type Array.<DisplayObject> Inherited From PIXI.DisplayObjectContainer#children Source code: pixi/display/DisplayObjectContainer.js (Line 17)

Bullet#getChildIndex()

getChildIndex(child) → {Number} Returns the index position of a child DisplayObject instance Parameters Name Type Description child DisplayObject The DisplayObject instance to identify Returns Number - The index position of the child display object to identify Inherited From PIXI.DisplayObjectContainer#getChildIndex Source code: pixi/display/DisplayObjectContainer.js (Line 112)

World#onChildInputOut

onChildInputOut : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputOut signal as a resultof having been interacted with by a Pointer. You can bind functions to this Signal instead of toevery child Sprite. This Signal is sent 2 arguments: A reference to the Sprite that triggered the signal, anda reference to the Pointer that caused it. Inherited From Phaser.Group#onChildInputOut Source code: core/Group.js (Line 198)

Group#removeChild()

removeChild(child) → {DisplayObject} Removes a child from the container. Parameters Name Type Description child DisplayObject The DisplayObject to remove Returns DisplayObject - The child that was removed. Inherited From PIXI.DisplayObjectContainer#removeChild Source code: pixi/display/DisplayObjectContainer.js (Line 171)

Image#world

world : Phaser.Point The world coordinates of this Game Object in pixels.Depending on where in the display list this Game Object is placed this value can differ from position,which contains the x/y coordinates relative to the Game Objects parent. Inherited From Phaser.Component.Core#world Source code: gameobjects/components/Core.js (Line 211)

Video#type

type : number The const type of this object. Source code: gameobjects/Video.js (Line 70)

Input#doubleTapRate

doubleTapRate : number The number of milliseconds between taps of the same Pointer for it to be considered a double tap / click. Default Value 300 Source code: input/Input.js (Line 114)

Rectangle#intersectsRaw()

intersectsRaw(left, right, top, bottom, tolerance) → {boolean} Determines whether the coordinates given intersects (overlaps) with this Rectangle. Parameters Name Type Description left number The x coordinate of the left of the area. right number The right coordinate of the area. top number The y coordinate of the area. bottom number The bottom coordinate of the area. tolerance number A tolerance value to allow for an intersection test with padding, default to 0 Returns boolean