Class: TweenManager

Phaser. TweenManager

Phaser.TweenManager

new TweenManager(game)

Phaser.Game has a single instance of the TweenManager through which all Tween objects are created and updated. Tweens are hooked into the game clock and pause system, adjusting based on the game state.

TweenManager is based heavily on tween.js by http://soledadpenades.com. The difference being that tweens belong to a games instance of TweenManager, rather than to a global TWEEN object. It also has callbacks swapped for Signals and a few issues patched with regard to properties and completion errors. Please see https://github.com/sole/tween.js for a full list of contributors.

Parameters:
Name Type Description
game Phaser.Game

A reference to the currently running game.

Source - tween/TweenManager.js, line 20

Members

game :Phaser.Game

Local reference to game.

Source - tween/TweenManager.js, line 25

Methods

add(tween) → {Phaser.Tween}

Add a new tween into the TweenManager.

Parameters:
Name Type Description
tween Phaser.Tween

The tween object you want to add.

Returns:

The tween object you added to the manager.

Source - tween/TweenManager.js, line 72

create(object) → {Phaser.Tween}

Create a tween object for a specific object. The object can be any JavaScript object or Phaser object such as Sprite.

Parameters:
Name Type Description
object Object

Object the tween will be run on.

Returns:

The newly created tween object.

Source - tween/TweenManager.js, line 86

getAll() → {Phaser.Tween[]}

Get all the tween objects in an array.

Returns:
Phaser.Tween[] -

Array with all tween objects.

Source - tween/TweenManager.js, line 46

isTweening(object) → {boolean}

Checks to see if a particular Sprite is currently being tweened.

Parameters:
Name Type Description
object object

The object to check for tweens against.

Returns:
boolean -

Returns true if the object is currently being tweened, false if not.

Source - tween/TweenManager.js, line 168

pauseAll()

Pauses all currently running tweens.

Source - tween/TweenManager.js, line 213

remove(tween)

Remove a tween from this manager.

Parameters:
Name Type Description
tween Phaser.Tween

The tween object you want to remove.

Source - tween/TweenManager.js, line 99

removeAll()

Remove all tweens running and in the queue. Doesn't call any of the tween onComplete events.

Source - tween/TweenManager.js, line 57

resumeAll()

Resumes all currently paused tweens.

Source - tween/TweenManager.js, line 227

update() → {boolean}

Update all the tween objects you added to this manager.

Returns:
boolean -

Return false if there's no tween to update, otherwise return true.

Source - tween/TweenManager.js, line 125
Phaser Copyright © 2012-2014 Photon Storm Ltd.
Documentation generated by JSDoc 3.3.0-dev on Sat Nov 15 2014 19:55:05 GMT-0000 (GMT) using the DocStrap template.