Creature#events

events : Phaser.Events All Phaser Game Objects have an Events class which contains all of the events that are dispatched when certain things happen to thisGame Object, or any of its components. Inherited From Phaser.Component.Core#events Source code: gameobjects/components/Core.js (Line 185) See Phaser.Events

Texture#requiresUpdate

requiresUpdate : boolean This will let a renderer know that a texture has been updated (used mainly for webGL uv updates) Source code: pixi/textures/Texture.js (Line 87)

SignalBinding#isBound()

isBound() → {boolean} Returns boolean - True if binding is still bound to the signal and has a listener. Source code: core/SignalBinding.js (Line 146)

Pointer#screenY

screenY : number The vertical coordinate of the Pointer relative to the screen. Source code: input/Pointer.js (Line 206)

Component.PhysicsBody.preUpdate()

<static> preUpdate() The PhysicsBody component preUpdate handler.Called automatically by the Game Object. Source code: gameobjects/components/PhysicsBody.js (Line 21)

Pointer#swapTarget()

swapTarget(newTarget, silent) This will change the Pointer.targetObject object to be the one provided. This allows you to have fine-grained control over which object the Pointer is targeting. Note that even if you set a new Target here, it is still able to be replaced by any other validtarget during the next Pointer update. Parameters Name Type Argument Default Description newTarget Phaser.InputHandler The new target for this Pointer. Note this is an InputHandler, so don't pass a Sprit

LoaderParser.xmlBitmapFont()

<static> xmlBitmapFont(xml, baseTexture, xSpacing, ySpacing) → {object} Parse a Bitmap Font from an XML file. Parameters Name Type Argument Default Description xml object XML data you want to parse. baseTexture PIXI.BaseTexture The BaseTexture this font uses. xSpacing number <optional> 0 Additional horizontal spacing between the characters. ySpacing number <optional> 0 Additional vertical spacing between the characters. Returns object - The pars

global#BUTTON

<constant> BUTTON : integer Game Object type. Source code: Phaser.js (Line 101)

Particle#anchor

anchor :Point The anchor sets the origin point of the texture.The default is 0,0 this means the texture's origin is the top leftSetting than anchor to 0.5,0.5 means the textures origin is centeredSetting the anchor to 1,1 would mean the textures origin points will be the bottom right corner Inherited From PIXI.Sprite#anchor Source code: pixi/display/Sprite.js (Line 17)

Creature#update()

update() Override this method in your own custom objects to handle any update requirements.It is called immediately after preUpdate and before postUpdate.Remember if this Game Object has any children you should call update on those too. Inherited From Phaser.Component.Core#update Source code: gameobjects/components/Core.js (Line 328)