ArrayUtils.findClosest()

<static> findClosest(value, arr) → {number} Snaps a value to the nearest value in an array.The result will always be in the range [first_value, last_value]. Parameters Name Type Description value number The search value arr Array.<number> The input array which must be sorted. Returns number - The nearest value found. Source code: utils/ArrayUtils.js (Line 172)

Camera.FOLLOW_LOCKON

[static] FOLLOW_LOCKON : number Source code: core/Camera.js (Line 189)

Gamepad#padsConnected

[readonly] padsConnected : number How many live gamepads are currently connected. Source code: input/Gamepad.js (Line 524)

FlexGrid#onResize()

onResize(width, height) Called when the game container changes dimensions. Parameters Name Type Description width number The new width of the game container. height number The new height of the game container. Source code: core/FlexGrid.js (Line 240)

DeviceButton#repeats

repeats : number Gamepad only.If a button is held down this holds down the number of times the button has 'repeated'. Source code: input/DeviceButton.js (Line 79)

Text#height

height : number The height of the Text. Setting this will modify the scale to achieve the value requested. Source code: gameobjects/Text.js (Line 2264)

SoundManager#noAudio

noAudio : boolean True if audio been disabled via the PhaserGlobal (useful if you need to use a 3rd party audio library) or the device doesn't support any audio. Source code: sound/SoundManager.js (Line 78)

Easing.Back#In()

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

Physics.P2#reset()

reset() Called by Phaser.Physics when a State swap occurs.Starts the begin and end Contact listeners again. Source code: physics/p2/World.js (Line 779)

Easing.Back#Back

new Back() Back easing. Source code: tween/Easing.js (Line 457)