phaser/v3/src/actions/SmootherStep.js

29 lines
597 B
JavaScript
Raw Normal View History

var MathSmootherStep = require('../math/SmootherStep');
var SmootherStep = function (items, property, min, max, inc)
{
if (inc === undefined) { inc = false; }
var step = Math.abs(max - min) / items.length;
var i;
if (inc)
{
for (i = 0; i < items.length; i++)
{
items[i][property] += MathSmootherStep(i * step, min, max);
}
}
else
{
for (i = 0; i < items.length; i++)
{
items[i][property] = MathSmootherStep(i * step, min, max);
}
}
return items;
};
module.exports = SmootherStep;