Keyboard#addKey()

addKey(keycode) → {Phaser.Key} If you need more fine-grained control over a Key you can create a new Phaser.Key object via this method.The Key object can then be polled, have events attached to it, etc. Parameters Name Type Description keycode integer The keycode of the key. Returns Phaser.Key - The Key object which you can store locally and reference directly. Source code: input/Keyboard.js (Line 144)

Game#isRunning

[readonly] isRunning : boolean Is game running or paused? Source code: core/Game.js (Line 145)

Pointer#x

x : number The horizontal coordinate of the Pointer. This value is automatically scaled based on the game scale. Source code: input/Pointer.js (Line 236)

SpriteBatch#onChildInputDown

onChildInputDown : Phaser.Signal This Signal is dispatched whenever a child of this Group emits an onInputDown 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#onChildInputDown Source code: core/Group.js (Line 161)

Graphics#tint

tint : number The tint applied to the graphic shape. This is a hex value. Apply a value of 0xFFFFFF to reset the tint. Default Value 0xFFFFFF Source code: pixi/primitives/Graphics.js (Line 52)

Physics.P2.Body#force

force : Phaser.Physics.P2.InversePointProxy The force applied to the body. Source code: physics/p2/Body.js (Line 71)

Graphics#type

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

Physics.Arcade.Body#destroy()

destroy() Destroys this Body. First it calls Group.removeFromHash if the Game Object this Body belongs to is part of a Group.Then it nulls the Game Objects body reference, and nulls this Body.sprite reference. Source code: physics/arcade/Body.js (Line 1305)

RenderTexture#getBase64()

getBase64() → {String} Will return a base64 encoded string of this texture. It works by calling RenderTexture.getCanvas and then running toDataURL on that. Returns String - A base64 encoded string of the texture. Inherited From PIXI.RenderTexture#getBase64 Source code: pixi/textures/RenderTexture.js (Line 309)

Rope#game

game : Phaser.Game A reference to the currently running Game. Inherited From Phaser.Component.Core#game Source code: gameobjects/components/Core.js (Line 142)