phaser/src/actions/Spread.js
2018-01-09 21:43:56 +00:00

40 lines
903 B
JavaScript

/**
* [description]
*
* @function Phaser.Actions.Spread
* @since 3.0.0
*
* @param {array} items - An array of Game Objects. The contents of this array are updated by this Action.
* @param {string} property - [description]
* @param {number} min - [description]
* @param {number} max - [description]
* @param {number} inc - [description]
*
* @return {array} The array of Game Objects that was passed to this Action.
*/
var Spread = 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] += i * step;
}
}
else
{
for (i = 0; i < items.length; i++)
{
items[i][property] = i * step;
}
}
return items;
};
module.exports = Spread;