2014-11-18 20:58:25 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-11-20 05:26:43 +00:00
|
|
|
* A Phaser.Tween contains at least one TweenData object. It contains all of the tween data values, such as the
|
|
|
|
* starting and ending values, the ease function, interpolation and duration. The Tween acts as a timeline manager for
|
|
|
|
* TweenData objects and can contain multiple TweenData objects.
|
2014-11-18 20:58:25 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.TweenData
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Tween} parent - The Tween that owns this TweenData object.
|
|
|
|
*/
|
|
|
|
Phaser.TweenData = function (parent) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Tween} parent - The Tween which owns this TweenData.
|
|
|
|
*/
|
|
|
|
this.parent = parent;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
|
|
|
this.game = parent.game;
|
|
|
|
|
|
|
|
/**
|
2014-11-19 21:11:07 +00:00
|
|
|
* @property {object} vStart - An object containing the values at the start of the tween.
|
|
|
|
* @private
|
2014-11-18 20:58:25 +00:00
|
|
|
*/
|
2014-11-19 21:11:07 +00:00
|
|
|
this.vStart = {};
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
/**
|
2014-11-19 21:11:07 +00:00
|
|
|
* @property {object} vStartCache - Cached starting values.
|
|
|
|
* @private
|
2014-11-18 20:58:25 +00:00
|
|
|
*/
|
2014-11-19 21:11:07 +00:00
|
|
|
this.vStartCache = {};
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
/**
|
2014-11-19 21:11:07 +00:00
|
|
|
* @property {object} vEnd - An object containing the values at the end of the tween.
|
|
|
|
* @private
|
2014-11-18 20:58:25 +00:00
|
|
|
*/
|
2014-11-19 21:11:07 +00:00
|
|
|
this.vEnd = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} vEnd - Cached ending values.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this.vEndCache = {};
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} duration - The duration of the tween in ms.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.duration = 1000;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} percent - A value between 0 and 1 that represents how far through the duration this tween is.
|
|
|
|
* @readOnly
|
|
|
|
*/
|
|
|
|
this.percent = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} value - The current calculated value.
|
|
|
|
* @readOnly
|
|
|
|
*/
|
|
|
|
this.value = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} repeatCounter - If the Tween is set to repeat this contains the current repeat count.
|
|
|
|
*/
|
|
|
|
this.repeatCounter = 0;
|
|
|
|
|
2014-11-20 00:21:14 +00:00
|
|
|
/**
|
|
|
|
* @property {number} repeatDelay - The amount of time in ms between repeats of this tween.
|
|
|
|
*/
|
|
|
|
this.repeatDelay = 0;
|
|
|
|
|
2014-11-18 20:58:25 +00:00
|
|
|
/**
|
|
|
|
* @property {boolean} yoyo - True if the Tween is set to yoyo, otherwise false.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.yoyo = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} inReverse - When a Tween is yoyoing this value holds if it's currently playing forwards (false) or in reverse (true).
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.inReverse = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} delay - The amount to delay by until the Tween starts (in ms).
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.delay = 0;
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
/**
|
|
|
|
* @property {number} dt - Current time value.
|
|
|
|
*/
|
|
|
|
this.dt = 0;
|
|
|
|
|
2014-11-18 20:58:25 +00:00
|
|
|
/**
|
|
|
|
* @property {number} startTime - The time the Tween started or null if it hasn't yet started.
|
|
|
|
*/
|
|
|
|
this.startTime = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} easingFunction - The easing function used for the Tween.
|
|
|
|
* @default Phaser.Easing.Default
|
|
|
|
*/
|
|
|
|
this.easingFunction = Phaser.Easing.Default;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} interpolationFunction - The interpolation function used for the Tween.
|
|
|
|
* @default Phaser.Math.linearInterpolation
|
|
|
|
*/
|
|
|
|
this.interpolationFunction = Phaser.Math.linearInterpolation;
|
|
|
|
|
2014-11-20 00:21:14 +00:00
|
|
|
/**
|
2014-11-20 05:26:43 +00:00
|
|
|
* @property {boolean} isRunning - If the tween is running this is set to `true`. Unless Phaser.Tween a TweenData that is waiting for a delay to expire is *not* considered as running.
|
2014-11-20 00:21:14 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.isRunning = false;
|
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
/**
|
|
|
|
* @property {boolean} isFrom - Is this a from tween or a to tween?
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.isFrom = false;
|
|
|
|
|
2014-11-18 20:58:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant
|
|
|
|
* @type {number}
|
|
|
|
*/
|
|
|
|
Phaser.TweenData.PENDING = 0;
|
2014-11-19 21:11:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant
|
|
|
|
* @type {number}
|
|
|
|
*/
|
2014-11-18 20:58:25 +00:00
|
|
|
Phaser.TweenData.RUNNING = 1;
|
2014-11-19 21:11:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant
|
|
|
|
* @type {number}
|
|
|
|
*/
|
2014-11-18 20:58:25 +00:00
|
|
|
Phaser.TweenData.LOOPED = 2;
|
2014-11-19 21:11:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant
|
|
|
|
* @type {number}
|
|
|
|
*/
|
2014-11-18 20:58:25 +00:00
|
|
|
Phaser.TweenData.COMPLETE = 3;
|
|
|
|
|
|
|
|
Phaser.TweenData.prototype = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets this tween to be a `to` tween on the properties given. A `to` tween starts at the current value and tweens to the destination value given.
|
|
|
|
* For example a Sprite with an `x` coordinate of 100 could be tweened to `x` 200 by giving a properties object of `{ x: 200 }`.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#to
|
|
|
|
* @param {object} properties - The properties you want to tween, such as `Sprite.x` or `Sound.volume`. Given as a JavaScript object.
|
|
|
|
* @param {number} [duration=1000] - Duration of this tween in ms.
|
|
|
|
* @param {function} [ease=null] - Easing function. If not set it will default to Phaser.Easing.Default, which is Phaser.Easing.Linear.None by default but can be over-ridden at will.
|
|
|
|
* @param {number} [delay=0] - Delay before this tween will start, defaults to 0 (no delay). Value given is in ms.
|
|
|
|
* @param {number} [repeat=0] - Should the tween automatically restart once complete? If you want it to run forever set as -1. This ignores any chained tweens.
|
|
|
|
* @param {boolean} [yoyo=false] - A tween that yoyos will reverse itself and play backwards automatically. A yoyo'd tween doesn't fire the Tween.onComplete event, so listen for Tween.onLoop instead.
|
2014-11-19 21:11:07 +00:00
|
|
|
* @return {Phaser.TweenData} This Tween object.
|
2014-11-18 20:58:25 +00:00
|
|
|
*/
|
2014-11-20 05:26:43 +00:00
|
|
|
to: function (properties, duration, ease, delay, repeat, yoyo) {
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
this.vEnd = properties;
|
2014-11-18 20:58:25 +00:00
|
|
|
this.duration = duration;
|
|
|
|
this.easingFunction = ease;
|
|
|
|
this.delay = delay;
|
|
|
|
this.repeatCounter = repeat;
|
|
|
|
this.yoyo = yoyo;
|
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
this.isFrom = false;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets this tween to be a `from` tween on the properties given. A `from` tween sets the target to the destination value and tweens to its current value.
|
|
|
|
* For example a Sprite with an `x` coordinate of 100 tweened from `x` 500 would be set to `x` 500 and then tweened to `x` 100 by giving a properties object of `{ x: 500 }`.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#from
|
|
|
|
* @param {object} properties - The properties you want to tween, such as `Sprite.x` or `Sound.volume`. Given as a JavaScript object.
|
|
|
|
* @param {number} [duration=1000] - Duration of this tween in ms.
|
|
|
|
* @param {function} [ease=null] - Easing function. If not set it will default to Phaser.Easing.Default, which is Phaser.Easing.Linear.None by default but can be over-ridden at will.
|
|
|
|
* @param {number} [delay=0] - Delay before this tween will start, defaults to 0 (no delay). Value given is in ms.
|
|
|
|
* @param {number} [repeat=0] - Should the tween automatically restart once complete? If you want it to run forever set as -1. This ignores any chained tweens.
|
|
|
|
* @param {boolean} [yoyo=false] - A tween that yoyos will reverse itself and play backwards automatically. A yoyo'd tween doesn't fire the Tween.onComplete event, so listen for Tween.onLoop instead.
|
|
|
|
* @return {Phaser.TweenData} This Tween object.
|
|
|
|
*/
|
|
|
|
from: function (properties, duration, ease, delay, repeat, yoyo) {
|
|
|
|
|
|
|
|
this.vEnd = properties;
|
|
|
|
this.duration = duration;
|
|
|
|
this.easingFunction = ease;
|
|
|
|
this.delay = delay;
|
|
|
|
this.repeatCounter = repeat;
|
|
|
|
this.yoyo = yoyo;
|
|
|
|
|
|
|
|
this.isFrom = true;
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
/**
|
|
|
|
* Starts the Tween running.
|
|
|
|
*
|
|
|
|
* @method Phaser.TweenData#start
|
|
|
|
* @return {Phaser.TweenData} This Tween object.
|
|
|
|
*/
|
2014-11-18 20:58:25 +00:00
|
|
|
start: function () {
|
|
|
|
|
|
|
|
this.startTime = this.game.time.time + this.delay;
|
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
if (this.parent.reverse)
|
|
|
|
{
|
|
|
|
this.dt = this.duration;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.dt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.delay > 0)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
this.isRunning = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.isRunning = true;
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
if (this.isFrom)
|
|
|
|
{
|
2014-11-20 20:42:10 +00:00
|
|
|
// Reverse them all and instant set them
|
2014-11-20 05:26:43 +00:00
|
|
|
for (var property in this.vStartCache)
|
|
|
|
{
|
|
|
|
this.vStart[property] = this.vEndCache[property];
|
|
|
|
this.vEnd[property] = this.vStartCache[property];
|
2014-11-20 20:42:10 +00:00
|
|
|
this.parent.target[property] = this.vStart[property];
|
2014-11-20 05:26:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.value = 0;
|
|
|
|
this.yoyoCounter = 0;
|
|
|
|
|
2014-11-18 20:58:25 +00:00
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
/**
|
|
|
|
* Loads the values from the target object into this Tween.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @method Phaser.TweenData#loadValues
|
|
|
|
* @return {Phaser.TweenData} This Tween object.
|
|
|
|
*/
|
|
|
|
loadValues: function () {
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
for (var property in this.parent.properties)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
// Load the property from the parent object
|
|
|
|
this.vStart[property] = this.parent.properties[property];
|
|
|
|
|
|
|
|
// Check if an Array was provided as property value (NEEDS TESTING)
|
2014-11-19 21:11:07 +00:00
|
|
|
if (Array.isArray(this.vEnd[property]))
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
if (this.vEnd[property].length === 0)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a local copy of the Array with the start value at the front
|
2014-11-20 05:26:43 +00:00
|
|
|
this.vEnd[property] = [this.parent.properties[property]].concat(this.vEnd[property]);
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-20 10:00:08 +00:00
|
|
|
if (typeof this.vEnd[property] !== 'undefined')
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
if (typeof this.vEnd[property] === 'string')
|
|
|
|
{
|
|
|
|
// Parses relative end values with start as base (e.g.: +10, -3)
|
|
|
|
this.vEnd[property] = this.vStart[property] + parseFloat(this.vEnd[property], 10);
|
|
|
|
}
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-20 05:26:43 +00:00
|
|
|
this.parent.properties[property] = this.vEnd[property];
|
|
|
|
}
|
|
|
|
else
|
2014-11-19 21:11:07 +00:00
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
// Null tween
|
|
|
|
this.vEnd[property] = this.vStart[property];
|
2014-11-19 21:11:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this.vStartCache[property] = this.vStart[property];
|
|
|
|
this.vEndCache[property] = this.vEnd[property];
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
return this;
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
/**
|
|
|
|
* Updates this Tween. This is called automatically by Phaser.Tween.
|
|
|
|
*
|
|
|
|
* @protected
|
|
|
|
* @method Phaser.TweenData#update
|
|
|
|
* @return {number} The current status of this Tween. One of the Phaser.TweenData constants: PENDING, RUNNING, LOOPED or COMPLETE.
|
|
|
|
*/
|
|
|
|
update: function () {
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-20 00:21:14 +00:00
|
|
|
if (!this.isRunning)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
|
|
|
if (this.game.time.time >= this.startTime)
|
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
this.isRunning = true;
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Phaser.TweenData.PENDING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
if (this.parent.reverse)
|
|
|
|
{
|
2014-11-26 13:13:25 +00:00
|
|
|
this.dt -= this.game.time.physicsElapsedMS * this.parent.timeScale;
|
2014-11-19 21:11:07 +00:00
|
|
|
this.dt = Math.max(this.dt, 0);
|
|
|
|
}
|
|
|
|
else
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-26 13:13:25 +00:00
|
|
|
this.dt += this.game.time.physicsElapsedMS * this.parent.timeScale;
|
2014-11-19 21:11:07 +00:00
|
|
|
this.dt = Math.min(this.dt, this.duration);
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
this.percent = this.dt / this.duration;
|
|
|
|
|
2014-11-18 20:58:25 +00:00
|
|
|
this.value = this.easingFunction(this.percent);
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
for (var property in this.vEnd)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
var start = this.vStart[property];
|
|
|
|
var end = this.vEnd[property];
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
if (Array.isArray(end))
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
|
|
|
this.parent.target[property] = this.interpolationFunction(end, this.value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-20 05:26:43 +00:00
|
|
|
this.parent.target[property] = start + ((end - start) * this.value);
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
if ((!this.parent.reverse && this.percent === 1) || (this.parent.reverse && this.percent === 0))
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
return this.repeat();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Phaser.TweenData.RUNNING;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-24 12:34:42 +00:00
|
|
|
/**
|
|
|
|
* This will generate an array populated with the tweened object values from start to end.
|
|
|
|
* It works by running the tween simulation at the given frame rate based on the values set-up in Tween.to and Tween.from.
|
|
|
|
* Just one play through of the tween data is returned, including yoyo if set.
|
|
|
|
*
|
|
|
|
* @method Phaser.TweenData#generateData
|
|
|
|
* @param {number} [frameRate=60] - The speed in frames per second that the data should be generated at. The higher the value, the larger the array it creates.
|
|
|
|
* @return {array} An array of tweened values.
|
|
|
|
*/
|
|
|
|
generateData: function (frameRate) {
|
|
|
|
|
|
|
|
if (this.parent.reverse)
|
|
|
|
{
|
|
|
|
this.dt = this.duration;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.dt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
var data = [];
|
|
|
|
var complete = false;
|
|
|
|
var fps = (1 / frameRate) * 1000;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (this.parent.reverse)
|
|
|
|
{
|
|
|
|
this.dt -= fps;
|
|
|
|
this.dt = Math.max(this.dt, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.dt += fps;
|
|
|
|
this.dt = Math.min(this.dt, this.duration);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.percent = this.dt / this.duration;
|
|
|
|
|
|
|
|
this.value = this.easingFunction(this.percent);
|
|
|
|
|
|
|
|
var blob = {};
|
|
|
|
|
|
|
|
for (var property in this.vEnd)
|
|
|
|
{
|
|
|
|
var start = this.vStart[property];
|
|
|
|
var end = this.vEnd[property];
|
|
|
|
|
|
|
|
if (Array.isArray(end))
|
|
|
|
{
|
|
|
|
blob[property] = this.interpolationFunction(end, this.value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
blob[property] = start + ((end - start) * this.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
data.push(blob);
|
|
|
|
|
|
|
|
if ((!this.parent.reverse && this.percent === 1) || (this.parent.reverse && this.percent === 0))
|
|
|
|
{
|
|
|
|
complete = true;
|
|
|
|
}
|
|
|
|
|
2014-11-24 13:15:38 +00:00
|
|
|
} while (!complete);
|
2014-11-24 12:34:42 +00:00
|
|
|
|
|
|
|
if (this.yoyo)
|
|
|
|
{
|
|
|
|
var reversed = data.slice();
|
|
|
|
reversed.reverse();
|
|
|
|
data = data.concat(reversed);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
/**
|
|
|
|
* Checks if this Tween is meant to repeat or yoyo and handles doing so.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @method Phaser.TweenData#repeat
|
|
|
|
* @return {number} Either Phaser.TweenData.LOOPED or Phaser.TweenData.COMPLETE.
|
|
|
|
*/
|
|
|
|
repeat: function () {
|
|
|
|
|
|
|
|
// If not a yoyo and repeatCounter = 0 then we're done
|
|
|
|
if (this.yoyo)
|
|
|
|
{
|
|
|
|
// We're already in reverse mode, which means the yoyo has finished and there's no repeats, so end
|
|
|
|
if (this.inReverse && this.repeatCounter === 0)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
|
|
|
return Phaser.TweenData.COMPLETE;
|
|
|
|
}
|
2014-11-19 21:11:07 +00:00
|
|
|
|
|
|
|
this.inReverse = !this.inReverse;
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
if (this.repeatCounter === 0)
|
|
|
|
{
|
|
|
|
return Phaser.TweenData.COMPLETE;
|
|
|
|
}
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
if (this.inReverse)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
// If inReverse we're going from vEnd to vStartCache
|
|
|
|
for (var property in this.vStartCache)
|
|
|
|
{
|
|
|
|
this.vStart[property] = this.vEndCache[property];
|
|
|
|
this.vEnd[property] = this.vStartCache[property];
|
|
|
|
}
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
2014-11-19 21:11:07 +00:00
|
|
|
else
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
// If not inReverse we're just repopulating the cache again
|
|
|
|
for (var property in this.vStartCache)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
this.vStart[property] = this.vStartCache[property];
|
|
|
|
this.vEnd[property] = this.vEndCache[property];
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
// -1 means repeat forever, otherwise decrement the repeatCounter
|
|
|
|
// We only decrement this counter if the tween isn't doing a yoyo, as that doesn't count towards the repeat total
|
|
|
|
if (this.repeatCounter > 0)
|
2014-11-18 20:58:25 +00:00
|
|
|
{
|
2014-11-19 21:11:07 +00:00
|
|
|
this.repeatCounter--;
|
2014-11-18 20:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 21:11:07 +00:00
|
|
|
this.startTime = this.game.time.time + this.delay;
|
2014-11-18 20:58:25 +00:00
|
|
|
|
2014-11-20 02:17:41 +00:00
|
|
|
if (this.parent.reverse)
|
|
|
|
{
|
|
|
|
this.dt = this.duration;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.dt = 0;
|
|
|
|
}
|
2014-11-18 20:58:25 +00:00
|
|
|
|
|
|
|
return Phaser.TweenData.LOOPED;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.TweenData.prototype.constructor = Phaser.TweenData;
|