mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
|
/**
|
||
|
* @author Richard Davey <rich@photonstorm.com>
|
||
|
* @copyright 2020 Photon Storm Ltd.
|
||
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
||
|
*/
|
||
|
|
||
|
var BuildGameObject = require('../BuildGameObject');
|
||
|
var LightLayer = require('./LightLayer');
|
||
|
var GameObjectCreator = require('../GameObjectCreator');
|
||
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
||
|
|
||
|
/**
|
||
|
* Creates a new Light Layer Game Object and returns it.
|
||
|
*
|
||
|
* Note: This method will only be available if the Light Layer Game Object has been built into Phaser.
|
||
|
*
|
||
|
* @method Phaser.GameObjects.GameObjectCreator#lightlayer
|
||
|
* @since 3.50.0
|
||
|
*
|
||
|
* @param {object} config - The configuration object this Game Object will use to create itself.
|
||
|
* @param {boolean} [addToScene] - Add this Game Object to the Scene after creating it? If set this argument overrides the `add` property in the config object.
|
||
|
*
|
||
|
* @return {Phaser.GameObjects.LightLayer} The Game Object that was created.
|
||
|
*/
|
||
|
GameObjectCreator.register('lightlayer', function (config, addToScene)
|
||
|
{
|
||
|
if (config === undefined) { config = {}; }
|
||
|
|
||
|
var children = GetAdvancedValue(config, 'children', null);
|
||
|
|
||
|
var layer = new LightLayer(this.scene, children);
|
||
|
|
||
|
if (addToScene !== undefined)
|
||
|
{
|
||
|
config.add = addToScene;
|
||
|
}
|
||
|
|
||
|
BuildGameObject(this.scene, layer, config);
|
||
|
|
||
|
return layer;
|
||
|
});
|