Text#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)

Image#cropRect

cropRect : Phaser.Rectangle The Rectangle used to crop the texture this Game Object uses.Set this property via crop.If you modify this property directly you must call updateCrop in order to have the change take effect. Inherited From Phaser.Component.Crop#cropRect Source code: gameobjects/components/Crop.js (Line 24)

Sprite#alignIn()

alignIn(container, position, offsetX, offsetY) → {Object} Aligns this Game Object within another Game Object, or Rectangle, known as the'container', to one of 9 possible positions. The container must be a Game Object, or Phaser.Rectangle object. This can include propertiessuch as World.bounds or Camera.view, for aligning Game Objects within the worldand camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText,TileSprites or Buttons. Please note that aligning a Sprite t

Easing.Quintic#In()

In(k) → {number} Quintic ease-in. Parameters Name Type Description k number The value to be tweened. Returns number - The tweened value. Source code: tween/Easing.js (Line 192)

Game#time

time : Phaser.Time Reference to the core game clock. Source code: core/Game.js (Line 206)

TilemapLayer#TilemapLayer

new TilemapLayer(game, tilemap, index, width, height) A TilemapLayer is a Phaser.Image/Sprite that renders a specific TileLayer of a Tilemap. Since a TilemapLayer is a Sprite it can be moved around the display, added to other groups or display objects, etc. By default TilemapLayers have fixedToCamera set to true. Changing this will break Camera follow and scrolling behavior. Parameters Name Type Description game Phaser.Game Game reference to the currently running game. tilemap Phaser.Tile

DeviceButton#altKey

altKey : boolean True if the alt key was held down when this button was last pressed or released.Not supported on Gamepads. Source code: input/DeviceButton.js (Line 87)

State#add

add : Phaser.GameObjectFactory A reference to the GameObjectFactory which can be used to add new objects to the World. Source code: core/State.js (Line 29)

Tile#faceBottom

faceBottom : boolean Is the bottom of this tile an interesting edge? Source code: tilemap/Tile.js (Line 104)

BitmapData#blendColorBurn()

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