Tilemap#getTileWorldXY()

getTileWorldXY(x, y, tileWidth, tileHeight, layer, nonNull) → {Phaser.Tile} Gets a tile from the Tilemap layer. The coordinates are given in pixel values. Parameters Name Type Argument Default Description x number X position to get the tile from (given in pixels) y number Y position to get the tile from (given in pixels) tileWidth number <optional> The width of the tiles. If not given the map default is used. tileHeight number <optional> The height of the ti

Animation#currentFrame

currentFrame : Phaser.Frame The currently displayed frame of the Animation. Source code: animation/Animation.js (Line 125)

Creature#children

[readonly] children : Array.<DisplayObject> [read-only] The array of children of this container. Type Array.<DisplayObject> Inherited From PIXI.DisplayObjectContainer#children Source code: pixi/display/DisplayObjectContainer.js (Line 17)

WebGLFilterManager#offsetY

offsetY : number Source code: pixi/renderers/webgl/utils/WebGLFilterManager.js (Line 23)

Weapon#forEach()

forEach(callback, callbackContext, args) → {Phaser.Weapon} Call a function on each in-flight bullet in this Weapon. See forEachExists for more details. Parameters Name Type Argument Default Description callback function The function that will be called for each applicable child. The child will be passed as the first argument. callbackContext object The context in which the function should be called (usually 'this'). args any <optional> <repeatable> (none) Additio

Easing.Exponential#Exponential

new Exponential() Exponential easing. Source code: tween/Easing.js (Line 293)

AnimationManager#game

game : Phaser.Game A reference to the currently running Game. Source code: animation/AnimationManager.js (Line 25)

TweenData#interpolationFunction

interpolationFunction : Function The interpolation function used for the Tween. Default Value Phaser.Math.linearInterpolation Source code: tween/TweenData.js (Line 135)

World#remove()

remove(child, destroy, silent) → {boolean} Removes the given child from this group. This will dispatch an onRemovedFromGroup event from the child (if it has one), and optionally destroy the child. If the group cursor was referring to the removed child it is updated to refer to the next child. Parameters Name Type Argument Default Description child any The child to remove. destroy boolean <optional> false If true destroy will be invoked on the removed child. silent boolean

Device#canPlayAudio()

canPlayAudio(type) → {boolean} Check whether the host environment can play audio. Parameters Name Type Description type string One of 'mp3, 'ogg', 'm4a', 'wav', 'webm' or 'opus'. Returns boolean - True if the given file type is supported by the browser, otherwise false. Source code: utils/Device.js (Line 1250)