2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-31 14:11:04 +00:00
|
|
|
var EaseMap = require('../../math/easing/EaseMap');
|
2017-05-10 01:25:46 +00:00
|
|
|
|
2018-02-10 17:11:36 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Tweens.Builders.GetEaseFunction
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-20 15:12:42 +00:00
|
|
|
* @param {(string|function)} ease - [description]
|
2018-02-10 17:11:36 +00:00
|
|
|
* @param {array} easeParams - [description]
|
|
|
|
*
|
|
|
|
* @return {function} [description]
|
|
|
|
*/
|
2017-05-24 03:38:17 +00:00
|
|
|
var GetEaseFunction = function (ease, easeParams)
|
2017-05-10 01:25:46 +00:00
|
|
|
{
|
2019-06-27 00:06:25 +00:00
|
|
|
// Default ease function
|
|
|
|
var easeFunction = EaseMap.Power0;
|
|
|
|
|
|
|
|
// Prepare ease function
|
2017-05-10 01:25:46 +00:00
|
|
|
if (typeof ease === 'string' && EaseMap.hasOwnProperty(ease))
|
|
|
|
{
|
2019-06-27 00:06:25 +00:00
|
|
|
// String based look-up
|
|
|
|
easeFunction = EaseMap[ease];
|
2017-05-10 01:25:46 +00:00
|
|
|
}
|
|
|
|
else if (typeof ease === 'function')
|
|
|
|
{
|
|
|
|
// Custom function
|
2019-06-27 00:06:25 +00:00
|
|
|
easeFunction = ease;
|
2017-05-10 01:25:46 +00:00
|
|
|
}
|
|
|
|
else if (Array.isArray(ease) && ease.length === 4)
|
|
|
|
{
|
|
|
|
// Bezier function (TODO)
|
|
|
|
}
|
|
|
|
|
2019-06-27 00:06:25 +00:00
|
|
|
// No custom ease parameters?
|
|
|
|
if (!easeParams)
|
|
|
|
{
|
|
|
|
// Return ease function
|
|
|
|
return easeFunction;
|
|
|
|
}
|
|
|
|
|
|
|
|
var cloneParams = easeParams.slice(0);
|
|
|
|
|
|
|
|
cloneParams.unshift(0);
|
|
|
|
|
|
|
|
// Return ease function with custom ease parameters
|
|
|
|
return function (v)
|
|
|
|
{
|
|
|
|
cloneParams[0] = v;
|
|
|
|
|
|
|
|
return easeFunction.apply(this, cloneParams);
|
|
|
|
};
|
2017-05-10 01:25:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GetEaseFunction;
|