SpriteBatch#forEach()

forEach(callback, callbackContext, checkExists, args) Call a function on each child in this group. Additional arguments for the callback can be specified after the checkExists parameter. For example, Group.forEach(awardBonusGold, this, true, 100, 500) would invoke awardBonusGold function with the parameters (child, 100, 500). Note: This check will skip any children which are Groups themselves. Parameters Name Type Argument Default Description callback function The function that will be

TileSprite#right

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

SpriteBatch#getLocalBounds()

getLocalBounds() → {Rectangle} Retrieves the non-global local bounds of the displayObjectContainer as a rectangle without any transformations. The calculation takes all visible children into consideration. Returns Rectangle - The rectangular bounding area Inherited From PIXI.DisplayObjectContainer#getLocalBounds Source code: pixi/display/DisplayObjectContainer.js (Line 437)

SpriteBatch#right

right : number The right coordinate of this Group. It is derived by calling getBounds, calculating the Groups dimensions based on itsvisible children. Inherited From Phaser.Group#right Source code: core/Group.js (Line 2789)

SpriteBatch#moveAll()

moveAll(group, silent) → {Phaser.Group} Moves all children from this Group to the Group given. Parameters Name Type Argument Default Description group Phaser.Group The new Group to which the children will be moved to. silent boolean <optional> false If true the children will not dispatch the onAddedToGroup event for the new Group. Returns Phaser.Group - The Group to which all the children were moved. Inherited From Phaser.Group#moveAll Source code: core/Group.js (L

BitmapData#blendColor()

blendColor() → {Phaser.BitmapData} Sets the blend mode to 'color' Returns Phaser.BitmapData - This BitmapData object for method chaining. Source code: gameobjects/BitmapData.js (Line 2351)

Group#onChildInputUp

onChildInputUp : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputUp 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 3 arguments: A reference to the Sprite that triggered the signal,a reference to the Pointer that caused it, and a boolean value isOver that tells you if the Pointeris still over the Sprite or not. Source code: core/Group.js (Line 174)

FlexLayer#onChildInputUp

onChildInputUp : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputUp 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 3 arguments: A reference to the Sprite that triggered the signal,a reference to the Pointer that caused it, and a boolean value isOver that tells you if the Pointeris still over the Sprite or not. Inherited From Phaser.Group#onChildIn

Sprite#swapChildren()

swapChildren(child, child2) Swaps the position of 2 Display Objects within this container. Parameters Name Type Description child DisplayObject - child2 DisplayObject - Inherited From PIXI.DisplayObjectContainer#swapChildren Source code: pixi/display/DisplayObjectContainer.js (Line 85)

Sprite#input

input : Phaser.InputHandler | null The Input Handler for this Game Object. By default it is disabled. If you wish this Game Object to process input events you should enable it with: inputEnabled = true. After you have done this, this property will be a reference to the Phaser InputHandler. Type Phaser.InputHandler | null Inherited From Phaser.Component.InputEnabled#input Source code: gameobjects/components/InputEnabled.js (Line 24)