FlexLayer#total

[readonly] total : integer Total number of existing children in the group. Inherited From Phaser.Group#total Source code: core/Group.js (Line 2648)

WebGLRenderer#WebGLRenderer

new WebGLRenderer(game) The WebGLRenderer draws the stage and all its content onto a webGL enabled canvas. This renderershould be used for browsers that support webGL. This Render works by automatically managing webGLBatchs.So no need for Sprite Batches or Sprite Clouds.Don't forget to add the view to your DOM or you will not see anything :) Parameters Name Type Description game PhaserGame A reference to the Phaser Game instance Source code: pixi/renderers/webgl/WebGLRenderer.js (Line 8)

Video#retryLimit

retryLimit : integer When starting playback of a video Phaser will monitor its readyState using a setTimeout call.The setTimeout happens once every Video.retryInterval ms. It will carry on monitoring the videostate in this manner until the retryLimit is reached and then abort. Default Value 20 Source code: gameobjects/Video.js (Line 149)

Physics.P2#onBeginContact

onBeginContact : Phaser.Signal This Signal is dispatched when a first contact is created between two bodies. This happens before the step has been done. It sends 5 arguments: bodyA, bodyB, shapeA, shapeB and contactEquations. It is possible that in certain situations the bodyA or bodyB values are null. You should check for thisin your own code to avoid processing potentially null physics bodies. Source code: physics/p2/World.js (Line 182)

Events#onDragUpdate

onDragUpdate : Phaser.Signal This signal is dispatched if the Game Object has been inputEnabled and enableDrag has been set.It is sent when a Phaser.Pointer is actively dragging the Game Object.Be warned: This is a high volume Signal. Be careful what you bind to it.It is sent six arguments:{any} The Game Object that received the event.{Phaser.Pointer} The Phaser.Pointer object that caused the event.{number} The new x coordinate of the Game Object.{number} The new y coordinate of the Game Obje

InputHandler#pointerTimeDown()

pointerTimeDown(pointerId) → {number} A timestamp representing when the Pointer first touched the touchscreen. Parameters Name Type Argument Default Description pointerId integer <optional> (check all) Returns number - Source code: input/InputHandler.js (Line 571)

Tween#delay()

delay(duration, index) → {Phaser.Tween} Sets the delay in milliseconds before this tween will start. If there are child tweens it sets the delay before the first child starts.The delay is invoked as soon as you call Tween.start. If the tween is already running this method doesn't do anything for the current active tween.If you have not yet called Tween.to or Tween.from at least once then this method will do nothing, as there are no tweens to delay.If you have child tweens and pass -1 as the i

SoundManager#onUnMute

onUnMute : Phaser.Signal This signal is dispatched when the SoundManager is globally un-muted, either directly via game code or as a result of the game resuming from a pause. Source code: sound/SoundManager.js (Line 54)

TilingSprite#ignoreChildInput

ignoreChildInput : boolean If ignoreChildInput is false it will allow this objects children to be considered as valid for Input events. If this property is true then the children will not be considered as valid for Input events. Note that this property isn't recursive: only immediate children are influenced, it doesn't scan further down. Inherited From PIXI.DisplayObjectContainer#ignoreChildInput Source code: pixi/display/DisplayObjectContainer.js (Line 26)

Graphics#name

name : string A user defined name given to this Game Object.This value isn't ever used internally by Phaser, it is meant as a game level property. Inherited From Phaser.Component.Core#name Source code: gameobjects/components/Core.js (Line 150)