phaser/v3/src/actions/SmootherStep.js

18 lines
369 B
JavaScript
Raw Normal View History

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