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.
|
2018-02-12 16:01:20 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-10-04 16:05:26 +00:00
|
|
|
/**
|
2019-04-05 16:13:04 +00:00
|
|
|
* Takes an array of Game Objects and then modifies their `property` so the value equals, or is incremented, by the
|
2018-10-01 11:01:59 +00:00
|
|
|
* calculated spread value.
|
|
|
|
*
|
2019-04-05 16:13:04 +00:00
|
|
|
* The spread value is derived from the given `min` and `max` values and the total number of items in the array.
|
2018-10-01 11:01:59 +00:00
|
|
|
*
|
|
|
|
* For example, to cause an array of Sprites to change in alpha from 0 to 1 you could call:
|
|
|
|
*
|
|
|
|
* ```javascript
|
|
|
|
* Phaser.Actions.Spread(itemsArray, 'alpha', 0, 1);
|
|
|
|
* ```
|
2017-10-04 16:05:26 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Actions.Spread
|
|
|
|
* @since 3.0.0
|
2018-03-20 14:57:12 +00:00
|
|
|
*
|
2018-03-27 11:14:08 +00:00
|
|
|
* @generic {Phaser.GameObjects.GameObject[]} G - [items,$return]
|
|
|
|
*
|
2018-03-20 14:57:12 +00:00
|
|
|
* @param {(array|Phaser.GameObjects.GameObject[])} items - An array of Game Objects. The contents of this array are updated by this Action.
|
2018-10-01 11:01:59 +00:00
|
|
|
* @param {string} property - The property of the Game Object to spread.
|
|
|
|
* @param {number} min - The minimum value.
|
|
|
|
* @param {number} max - The maximum value.
|
|
|
|
* @param {boolean} [inc=false] - Should the values be incremented? `true` or set (`false`)
|
2017-10-06 02:05:01 +00:00
|
|
|
*
|
2018-10-01 11:01:59 +00:00
|
|
|
* @return {(array|Phaser.GameObjects.GameObject[])} The array of Game Objects that were passed to this Action.
|
2017-10-04 16:05:26 +00:00
|
|
|
*/
|
2017-03-28 15:05:01 +00:00
|
|
|
var Spread = function (items, property, min, max, inc)
|
2017-03-28 14:33:20 +00:00
|
|
|
{
|
2017-03-28 15:05:01 +00:00
|
|
|
if (inc === undefined) { inc = false; }
|
|
|
|
|
2017-03-28 14:33:20 +00:00
|
|
|
var step = Math.abs(max - min) / items.length;
|
2017-03-28 15:05:01 +00:00
|
|
|
var i;
|
2017-03-28 14:33:20 +00:00
|
|
|
|
2017-03-28 15:05:01 +00:00
|
|
|
if (inc)
|
2017-03-28 14:33:20 +00:00
|
|
|
{
|
2017-03-28 15:05:01 +00:00
|
|
|
for (i = 0; i < items.length; i++)
|
|
|
|
{
|
2019-04-02 12:12:07 +00:00
|
|
|
items[i][property] += i * step + min;
|
2017-03-28 15:05:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (i = 0; i < items.length; i++)
|
|
|
|
{
|
2019-04-02 12:12:07 +00:00
|
|
|
items[i][property] = i * step + min;
|
2017-03-28 15:05:01 +00:00
|
|
|
}
|
2017-03-28 14:33:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Spread;
|