2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2018-03-17 17:49:23 +00:00
|
|
|
var PropertyValueSet = require('./PropertyValueSet');
|
|
|
|
|
2017-10-04 16:05:26 +00:00
|
|
|
/**
|
2018-03-17 17:49:23 +00:00
|
|
|
* Takes an array of Game Objects, or any objects that have the public property `visible`
|
|
|
|
* and then sets it to the given value.
|
2018-03-20 14:57:12 +00:00
|
|
|
*
|
2018-03-17 17:49:23 +00:00
|
|
|
* To use this with a Group: `SetVisible(group.getChildren(), value)`
|
2017-10-04 16:05:26 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Actions.SetVisible
|
|
|
|
* @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 - The array of items to be updated by this action.
|
2018-03-17 17:49:23 +00:00
|
|
|
* @param {boolean} value - The value to set the property to.
|
|
|
|
* @param {integer} [index=0] - An optional offset to start searching from within the items array.
|
|
|
|
* @param {integer} [direction=1] - The direction to iterate through the array. 1 is from beginning to end, -1 from end to beginning.
|
2017-10-06 02:05:01 +00:00
|
|
|
*
|
2018-03-27 11:14:08 +00:00
|
|
|
* @return {(array|Phaser.GameObjects.GameObject[])} The array of objects that were passed to this Action.
|
2017-10-04 16:05:26 +00:00
|
|
|
*/
|
2018-03-17 17:49:23 +00:00
|
|
|
var SetVisible = function (items, value, index, direction)
|
2017-03-28 12:20:39 +00:00
|
|
|
{
|
2018-03-17 17:49:23 +00:00
|
|
|
return PropertyValueSet(items, 'visible', value, 0, index, direction);
|
2017-03-28 12:20:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = SetVisible;
|