2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-02-07 15:27:21 +00:00
|
|
|
* @classdesc
|
2018-02-06 16:37:35 +00:00
|
|
|
* A Game Object Animation Controller.
|
|
|
|
*
|
|
|
|
* This controller lives as an instance within a Game Object, accessible as `sprite.anims`.
|
|
|
|
*
|
|
|
|
* @class Animation
|
|
|
|
* @memberOf Phaser.GameObjects.Components
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.GameObjects.GameObject} parent - The Game Object to which this animation controller belongs.
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
var Animation = new Class({
|
2017-04-05 23:58:48 +00:00
|
|
|
|
2017-04-06 23:07:20 +00:00
|
|
|
initialize:
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2017-04-06 23:07:20 +00:00
|
|
|
function Animation (parent)
|
2017-04-05 01:06:28 +00:00
|
|
|
{
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* The Game Object to which this animation controller belongs.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#parent
|
|
|
|
* @type {Phaser.GameObjects.GameObject}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.parent = parent;
|
2017-04-05 01:06:28 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* A reference to the global Animation Manager.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#animationManager
|
|
|
|
* @type {Phaser.Animations.AnimationManager}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-14 13:30:20 +00:00
|
|
|
this.animationManager = parent.scene.sys.anims;
|
2017-04-06 02:45:45 +00:00
|
|
|
|
2018-01-12 17:09:09 +00:00
|
|
|
this.animationManager.once('remove', this.remove, this);
|
2017-05-02 15:02:49 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Is an animation currently playing or not?
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#isPlaying
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.isPlaying = false;
|
2017-04-06 02:45:45 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* The current Animation loaded into this Animation Controller.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#currentAnim
|
|
|
|
* @type {?Phaser.Animations.Animation}
|
|
|
|
* @default null
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.currentAnim = null;
|
2017-04-06 02:45:45 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* The current AnimationFrame being displayed by this Animation Controller.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#currentFrame
|
|
|
|
* @type {?Phaser.Animations.AnimationFrame}
|
|
|
|
* @default null
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.currentFrame = null;
|
2017-04-06 02:45:45 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Time scale factor.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_timeScale
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
* @default 1
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:34:06 +00:00
|
|
|
this._timeScale = 1;
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* The frame rate of playback in frames per second.
|
|
|
|
* The default is 24 if the `duration` property is `null`.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#frameRate
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.frameRate = 0;
|
2017-04-05 00:15:53 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* How long the animation should play for, in milliseconds.
|
2018-02-06 16:37:35 +00:00
|
|
|
* If the `frameRate` property has been set then it overrides this value,
|
2018-04-04 15:13:45 +00:00
|
|
|
* otherwise the `frameRate` is derived from `duration`.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#duration
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.duration = 0;
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* ms per frame, not including frame specific modifiers that may be present in the Animation data.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#msPerFrame
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.msPerFrame = 0;
|
2017-04-05 03:18:08 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Skip frames if the time lags, or always advanced anyway?
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#skipMissedFrames
|
|
|
|
* @type {boolean}
|
|
|
|
* @default true
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.skipMissedFrames = true;
|
2017-04-05 03:18:08 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* A delay before starting playback, in milliseconds.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_delay
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:29:20 +00:00
|
|
|
this._delay = 0;
|
2017-04-05 03:18:08 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Number of times to repeat the animation (-1 for infinity)
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_repeat
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:29:20 +00:00
|
|
|
this._repeat = 0;
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Delay before the repeat starts, in milliseconds.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_repeatDelay
|
|
|
|
* @type {number}
|
|
|
|
* @private
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:29:20 +00:00
|
|
|
this._repeatDelay = 0;
|
2017-04-04 22:59:16 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Should the animation yoyo? (reverse back down to the start) before repeating?
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_yoyo
|
|
|
|
* @type {boolean}
|
|
|
|
* @private
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:29:20 +00:00
|
|
|
this._yoyo = false;
|
2017-04-05 00:15:53 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Will the playhead move forwards (`true`) or in reverse (`false`)
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#forward
|
|
|
|
* @type {boolean}
|
|
|
|
* @default true
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-05 01:06:28 +00:00
|
|
|
this.forward = true;
|
2017-04-05 23:58:48 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Internal time overflow accumulator.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#accumulator
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.accumulator = 0;
|
2018-02-06 16:37:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The time point at which the next animation frame will change.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#nextTick
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.nextTick = 0;
|
2017-04-05 23:58:48 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* An internal counter keeping track of how many repeats are left to play.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#repeatCounter
|
|
|
|
* @type {number}
|
|
|
|
* @default 0
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this.repeatCounter = 0;
|
2017-04-05 23:58:48 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* An internal flag keeping track of pending repeats.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#pendingRepeat
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-05 23:58:48 +00:00
|
|
|
this.pendingRepeat = false;
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Is the Animation paused?
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_paused
|
|
|
|
* @type {boolean}
|
|
|
|
* @private
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this._paused = false;
|
2018-02-06 16:37:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Was the animation previously playing before being paused?
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_wasPlaying
|
|
|
|
* @type {boolean}
|
|
|
|
* @private
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-06 23:07:20 +00:00
|
|
|
this._wasPlaying = false;
|
2017-04-10 15:27:32 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* Container for the callback arguments.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_callbackArgs
|
|
|
|
* @type {array}
|
|
|
|
* @private
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-10 15:27:32 +00:00
|
|
|
this._callbackArgs = [ parent, null ];
|
2018-02-06 16:37:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Container for the update arguments.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#_updateParams
|
|
|
|
* @type {array}
|
|
|
|
* @private
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-04-10 15:27:32 +00:00
|
|
|
this._updateParams = [];
|
2017-04-05 23:58:48 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Sets the amount of time, in milliseconds, that the animation will be delayed before starting playback.
|
2018-03-19 11:54:31 +00:00
|
|
|
*
|
2018-02-06 16:37:35 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#delay
|
2018-04-04 13:44:09 +00:00
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @param {integer} [value=0] - The amount of time, in milliseconds, to wait before starting playback.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
setDelay: function (value)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
if (value === undefined) { value = 0; }
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
this._delay = value;
|
|
|
|
|
|
|
|
return this.parent;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Gets the amount of time, in milliseconds that the animation will be delayed before starting playback.
|
2018-04-04 13:44:09 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#delay
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @return {integer} The amount of time, in milliseconds, the Animation will wait before starting playback.
|
2018-04-04 13:44:09 +00:00
|
|
|
*/
|
|
|
|
getDelay: function ()
|
|
|
|
{
|
|
|
|
return this._delay;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Waits for the specified delay, in milliseconds, then starts playback of the requested animation.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#delayedPlay
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @param {integer} delay - The delay, in milliseconds, to wait before starting the animation playing.
|
|
|
|
* @param {string} key - The key of the animation to play.
|
|
|
|
* @param {integer} [startFrame=0] - The frame of the animation to start from.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
delayedPlay: function (delay, key, startFrame)
|
|
|
|
{
|
|
|
|
this.play(key, true, startFrame);
|
|
|
|
|
|
|
|
this.nextTick += (delay * 1000);
|
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Returns the key of the animation currently loaded into this component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#getCurrentKey
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @return {string} The key of the Animation loaded into this component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
getCurrentKey: function ()
|
|
|
|
{
|
|
|
|
if (this.currentAnim)
|
|
|
|
{
|
|
|
|
return this.currentAnim.key;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Internal method used to load an animation into this component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#load
|
2018-04-04 15:13:45 +00:00
|
|
|
* @protected
|
2018-02-06 16:37:35 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-02-27 01:09:09 +00:00
|
|
|
* @param {string} key - [description]
|
|
|
|
* @param {integer} [startFrame=0] - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
load: function (key, startFrame)
|
|
|
|
{
|
|
|
|
if (startFrame === undefined) { startFrame = 0; }
|
|
|
|
|
|
|
|
if (this.isPlaying)
|
|
|
|
{
|
|
|
|
this.stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load the new animation in
|
|
|
|
this.animationManager.load(this, key, startFrame);
|
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Pause the current animation and set the `isPlaying` property to `false`.
|
|
|
|
* You can optionally pause it at a specific frame.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#pause
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @param {Phaser.Animations.AnimationFrame} [atFrame] - An optional frame to set after pausing the animation.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
pause: function (atFrame)
|
|
|
|
{
|
|
|
|
if (!this._paused)
|
|
|
|
{
|
|
|
|
this._paused = true;
|
|
|
|
this._wasPlaying = this.isPlaying;
|
|
|
|
this.isPlaying = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (atFrame !== undefined)
|
|
|
|
{
|
|
|
|
this.updateFrame(atFrame);
|
|
|
|
}
|
2018-03-19 11:54:31 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Resumes playback of a paused animation and sets the `isPlaying` property to `true`.
|
|
|
|
* You can optionally tell it to start playback from a specific frame.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#resume
|
2018-02-06 16:37:35 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @param {Phaser.Animations.AnimationFrame} [fromFrame] - An optional frame to set before restarting playback.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
resume: function (fromFrame)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
if (this._paused)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
this._paused = false;
|
|
|
|
this.isPlaying = this._wasPlaying;
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
2018-04-04 13:44:09 +00:00
|
|
|
|
|
|
|
if (fromFrame !== undefined)
|
|
|
|
{
|
|
|
|
this.updateFrame(fromFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.parent;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* `true` if the current animation is paused, otherwise `false`.
|
|
|
|
*
|
|
|
|
* @name Phaser.GameObjects.Components.Animation#isPaused
|
2018-04-04 15:13:45 +00:00
|
|
|
* @readOnly
|
2018-04-04 13:44:09 +00:00
|
|
|
* @type {boolean}
|
|
|
|
* @since 3.4.0
|
|
|
|
*/
|
|
|
|
isPaused: {
|
|
|
|
|
|
|
|
get: function ()
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
|
|
|
return this._paused;
|
|
|
|
}
|
2018-04-04 13:44:09 +00:00
|
|
|
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 15:13:45 +00:00
|
|
|
* Plays an Animation on the Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#play
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @param {string} key - The string-based key of the animation to play, as defined previously in the Animation Manager.
|
|
|
|
* @param {boolean} [ignoreIfPlaying=false] - If an animation is already playing then ignore this call.
|
|
|
|
* @param {integer} [startFrame=0] - Optionally start the animation playing from this frame index.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
play: function (key, ignoreIfPlaying, startFrame)
|
|
|
|
{
|
|
|
|
if (ignoreIfPlaying === undefined) { ignoreIfPlaying = false; }
|
|
|
|
if (startFrame === undefined) { startFrame = 0; }
|
|
|
|
|
|
|
|
if (ignoreIfPlaying && this.isPlaying && this.currentAnim.key === key)
|
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.load(key, startFrame);
|
|
|
|
|
|
|
|
var anim = this.currentAnim;
|
2018-02-27 01:09:09 +00:00
|
|
|
var gameObject = this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
|
|
|
|
// Should give us 9,007,199,254,740,991 safe repeats
|
2018-01-18 14:59:32 +00:00
|
|
|
this.repeatCounter = (this._repeat === -1) ? Number.MAX_VALUE : this._repeat;
|
2018-01-16 15:39:18 +00:00
|
|
|
|
|
|
|
anim.getFirstTick(this);
|
|
|
|
|
|
|
|
this.forward = true;
|
|
|
|
this.isPlaying = true;
|
|
|
|
this.pendingRepeat = false;
|
|
|
|
|
|
|
|
if (anim.showOnStart)
|
|
|
|
{
|
2018-02-27 01:09:09 +00:00
|
|
|
gameObject.visible = true;
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (anim.onStart)
|
|
|
|
{
|
|
|
|
anim.onStart.apply(anim.callbackScope, this._callbackArgs.concat(anim.onStartParams));
|
|
|
|
}
|
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return gameObject;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Returns a value between 0 and 1 indicating how far this animation is through, ignoring repeats and yoyos.
|
|
|
|
* If the animation has a non-zero repeat defined, `getProgress` and `getTotalProgress` will be different
|
|
|
|
* because `getProgress` doesn't include any repeats or repeat delays, whereas `getTotalProgress` does.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#getProgress
|
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {float} The progress of the current animation, between 0 and 1.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
getProgress: function ()
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
var p = this.currentFrame.progress;
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
if (!this.forward)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
p = 1 - p;
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
2018-04-04 13:44:09 +00:00
|
|
|
|
|
|
|
return p;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-04-04 15:13:45 +00:00
|
|
|
/**
|
|
|
|
* Takes a value between 0 and 1 and uses it to set how far this animation is through playback.
|
|
|
|
* Does not factor in repeats or yoyos.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#setProgress
|
|
|
|
* @todo
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @param {float} [value=0] - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
|
|
|
*/
|
|
|
|
setProgress: function (value)
|
|
|
|
{
|
|
|
|
return this.parent;
|
|
|
|
},
|
2018-04-04 13:44:09 +00:00
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#remove
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {Phaser.Animations.Animation} [event] - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
remove: function (event)
|
|
|
|
{
|
|
|
|
if (event === undefined) { event = this.currentAnim; }
|
|
|
|
|
|
|
|
if (this.isPlaying && event.key === this.currentAnim.key)
|
|
|
|
{
|
|
|
|
this.stop();
|
|
|
|
|
2018-04-04 12:14:41 +00:00
|
|
|
this.setCurrentFrame(this.currentAnim.frames[0]);
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Gets the number of times that the animation will repeat
|
|
|
|
* after its first iteration. For example, if returns 1, the animation will
|
|
|
|
* play a total of twice (the initial play plus 1 repeat).
|
|
|
|
* A value of -1 means the animation will repeat indefinitely.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#getRepeat
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @return {integer} The number of times that the animation will repeat.
|
|
|
|
*/
|
|
|
|
getRepeat: function ()
|
|
|
|
{
|
|
|
|
return this._repeat;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the number of times that the animation should repeat
|
2018-03-19 11:54:31 +00:00
|
|
|
* after its first iteration. For example, if repeat is 1, the animation will
|
|
|
|
* play a total of twice (the initial play plus 1 repeat).
|
|
|
|
* To repeat indefinitely, use -1. repeat should always be an integer.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#setRepeat
|
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @param {integer} value - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
setRepeat: function (value)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
this._repeat = value;
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
this.repeatCounter = 0;
|
|
|
|
|
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Gets the amount of delay between repeats, if any.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#getRepeatDelay
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @return {number} The delay between repeats.
|
|
|
|
*/
|
|
|
|
getRepeatDelay: function ()
|
|
|
|
{
|
|
|
|
return this._repeatDelay;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the amount of time in seconds between repeats.
|
|
|
|
* For example, if `repeat` is 2 and `repeatDelay` is 10, the animation will play initially,
|
|
|
|
* then wait for 10 seconds before repeating, then play again, then wait another 10 seconds
|
2018-03-19 11:54:31 +00:00
|
|
|
* before doing its final repeat.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#setRepeatDelay
|
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @param {number} value - The delay to wait between repeats, in seconds.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
setRepeatDelay: function (value)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
this._repeatDelay = value;
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Restarts the current animation from its beginning, optionally including its delay value.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#restart
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {boolean} [includeDelay=false] - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
restart: function (includeDelay)
|
|
|
|
{
|
|
|
|
if (includeDelay === undefined) { includeDelay = false; }
|
|
|
|
|
|
|
|
this.currentAnim.getFirstTick(this, includeDelay);
|
|
|
|
|
|
|
|
this.forward = true;
|
|
|
|
this.isPlaying = true;
|
|
|
|
this.pendingRepeat = false;
|
|
|
|
this._paused = false;
|
|
|
|
|
|
|
|
// Set frame
|
|
|
|
this.updateFrame(this.currentAnim.frames[0]);
|
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Stops the current animation from playing and optionally dispatches any onComplete callbacks.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#stop
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {boolean} [dispatchCallbacks=false] - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
stop: function (dispatchCallbacks)
|
|
|
|
{
|
|
|
|
if (dispatchCallbacks === undefined) { dispatchCallbacks = false; }
|
|
|
|
|
|
|
|
this.isPlaying = false;
|
|
|
|
|
|
|
|
var anim = this.currentAnim;
|
|
|
|
|
|
|
|
if (dispatchCallbacks && anim.onComplete)
|
|
|
|
{
|
|
|
|
anim.onComplete.apply(anim.callbackScope, this._callbackArgs.concat(anim.onCompleteParams));
|
|
|
|
}
|
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.parent;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Sets the Time Scale factor, allowing you to make the animation go go faster or slower than default.
|
|
|
|
* Where 1 = normal speed (the default), 0.5 = half speed, 2 = double speed, etc.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#setTimeScale
|
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @param {number} [value=1] - The time scale factor, where 1 is no change, 0.5 is half speed, etc.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object that owns this Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
setTimeScale: function (value)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
if (value === undefined) { value = 1; }
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
this._timeScale = value;
|
|
|
|
|
|
|
|
return this.parent;
|
2017-05-02 15:02:49 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Gets the Time Scale factor.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#getTimeScale
|
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {number} The Time Scale value.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
getTimeScale: function ()
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
return this._timeScale;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Returns the total number of frames in this animation.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#getTotalFrames
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @return {integer} The total number of frames in this animation.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 13:44:09 +00:00
|
|
|
getTotalFrames: function ()
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
return this.currentAnim.frames.length;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* The internal update loop for the Animation Component.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#update
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {number} timestamp - [description]
|
2018-03-18 13:43:37 +00:00
|
|
|
* @param {number} delta - The delta time, in ms, elapsed since the last frame.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
update: function (timestamp, delta)
|
|
|
|
{
|
|
|
|
if (!this.isPlaying || this.currentAnim.paused)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.accumulator += delta * this._timeScale;
|
|
|
|
|
|
|
|
if (this.accumulator >= this.nextTick)
|
|
|
|
{
|
|
|
|
this.currentAnim.setFrame(this);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-04-04 12:14:41 +00:00
|
|
|
/**
|
|
|
|
* Sets the given Animation Frame as being the current frame
|
|
|
|
* and applies it to the parent Game Object, adjusting its size and origin as needed.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#setCurrentFrame
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Animations.AnimationFrame} animationFrame - The Animation Frame to set as being current.
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object this Animation Component belongs to.
|
|
|
|
*/
|
|
|
|
setCurrentFrame: function (animationFrame)
|
|
|
|
{
|
|
|
|
var gameObject = this.parent;
|
|
|
|
|
|
|
|
this.currentFrame = animationFrame;
|
|
|
|
|
|
|
|
gameObject.texture = animationFrame.frame.texture;
|
|
|
|
gameObject.frame = animationFrame.frame;
|
|
|
|
|
|
|
|
gameObject.setSizeToFrame();
|
|
|
|
|
|
|
|
if (animationFrame.frame.customPivot)
|
|
|
|
{
|
|
|
|
gameObject.setOrigin(animationFrame.frame.pivotX, animationFrame.frame.pivotY);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gameObject.updateDisplayOrigin();
|
|
|
|
}
|
|
|
|
|
|
|
|
return gameObject;
|
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Internal frame change handler.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#updateFrame
|
2018-04-04 13:44:09 +00:00
|
|
|
* @private
|
2018-02-06 16:37:35 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-19 11:54:31 +00:00
|
|
|
* @param {Phaser.Animations.AnimationFrame} animationFrame - [description]
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
updateFrame: function (animationFrame)
|
|
|
|
{
|
2018-04-04 12:14:41 +00:00
|
|
|
var gameObject = this.setCurrentFrame(animationFrame);
|
2018-01-16 15:39:18 +00:00
|
|
|
|
|
|
|
if (this.isPlaying)
|
|
|
|
{
|
|
|
|
if (animationFrame.setAlpha)
|
|
|
|
{
|
2018-04-04 12:14:41 +00:00
|
|
|
gameObject.alpha = animationFrame.alpha;
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var anim = this.currentAnim;
|
|
|
|
|
|
|
|
if (anim.onUpdate)
|
|
|
|
{
|
|
|
|
anim.onUpdate.apply(anim.callbackScope, this._updateParams);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (animationFrame.onUpdate)
|
|
|
|
{
|
2018-04-04 12:14:41 +00:00
|
|
|
animationFrame.onUpdate(gameObject, animationFrame);
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
2018-04-04 13:44:09 +00:00
|
|
|
* Sets if the current Animation will yoyo when it reaches the end.
|
|
|
|
* A yoyo'ing animation will play through consecutively, and then reverse-play back to the start again.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#setYoyo
|
2018-04-04 13:44:09 +00:00
|
|
|
* @since 3.4.0
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @param {boolean} [value=false] - `true` if the animation should yoyo, `false` to not.
|
2018-02-06 16:37:35 +00:00
|
|
|
*
|
2018-04-04 13:44:09 +00:00
|
|
|
* @return {Phaser.GameObjects.GameObject} The Game Object this Animation Component belongs to.
|
2018-02-06 16:37:35 +00:00
|
|
|
*/
|
2018-04-04 15:13:45 +00:00
|
|
|
setYoyo: function (value)
|
2018-01-16 15:39:18 +00:00
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
if (value === undefined) { value = false; }
|
2018-01-16 15:39:18 +00:00
|
|
|
|
2018-04-04 13:44:09 +00:00
|
|
|
this._yoyo = value;
|
|
|
|
|
|
|
|
return this.parent;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets if the current Animation will yoyo when it reaches the end.
|
|
|
|
* A yoyo'ing animation will play through consecutively, and then reverse-play back to the start again.
|
|
|
|
*
|
2018-04-04 15:13:45 +00:00
|
|
|
* @method Phaser.GameObjects.Components.Animation#getYoyo
|
2018-04-04 13:44:09 +00:00
|
|
|
* @since 3.4.0
|
|
|
|
*
|
|
|
|
* @return {boolean} `true` if the animation is set to yoyo, `false` if not.
|
|
|
|
*/
|
2018-04-04 15:13:45 +00:00
|
|
|
getYoyo: function ()
|
2018-04-04 13:44:09 +00:00
|
|
|
{
|
|
|
|
return this._yoyo;
|
2018-01-16 15:39:18 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 16:37:35 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.Components.Animation#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-16 15:39:18 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
2018-04-04 13:44:09 +00:00
|
|
|
this.animationManager.off('remove', this.remove, this);
|
|
|
|
|
|
|
|
this.animationManager = null;
|
|
|
|
this.parent = null;
|
|
|
|
|
|
|
|
this.currentAnim = null;
|
|
|
|
this.currentFrame = null;
|
|
|
|
|
|
|
|
this._callbackArgs = [];
|
|
|
|
this._updateParams = [];
|
2018-01-16 15:39:18 +00:00
|
|
|
}
|
2017-04-05 14:27:26 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-04-04 22:59:16 +00:00
|
|
|
module.exports = Animation;
|