phaser/v3/src/actions/SmoothStep.js

18 lines
359 B
JavaScript
Raw Normal View History

var MathSmoothStep = require('../math/SmoothStep');
var SmoothStep = 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] = MathSmoothStep(i * step, min, max);
}
return items;
};
module.exports = SmoothStep;