2018-04-05 08:23:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @author Felipe Alfonso <@bitnenfer>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-04-05 08:23:29 +00:00
|
|
|
*/
|
|
|
|
|
2018-04-05 08:28:04 +00:00
|
|
|
var BuildGameObject = require('../BuildGameObject');
|
2018-03-23 17:15:52 +00:00
|
|
|
var Container = require('./Container');
|
2018-04-05 08:23:29 +00:00
|
|
|
var GameObjectCreator = require('../GameObjectCreator');
|
|
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
2018-03-23 17:15:52 +00:00
|
|
|
|
2018-04-05 08:23:29 +00:00
|
|
|
/**
|
|
|
|
* Creates a new Container Game Object and returns it.
|
|
|
|
*
|
|
|
|
* Note: This method will only be available if the Container Game Object has been built into Phaser.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.GameObjectCreator#container
|
|
|
|
* @since 3.4.0
|
|
|
|
*
|
2018-05-02 09:57:26 +00:00
|
|
|
* @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.
|
2018-04-05 08:23:29 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Container} The Game Object that was created.
|
|
|
|
*/
|
2018-05-02 09:57:26 +00:00
|
|
|
GameObjectCreator.register('container', function (config, addToScene)
|
2018-03-23 17:15:52 +00:00
|
|
|
{
|
2018-05-16 14:17:08 +00:00
|
|
|
if (config === undefined) { config = {}; }
|
|
|
|
|
2018-04-05 08:23:29 +00:00
|
|
|
var x = GetAdvancedValue(config, 'x', 0);
|
|
|
|
var y = GetAdvancedValue(config, 'y', 0);
|
2020-08-25 14:51:11 +00:00
|
|
|
var children = GetAdvancedValue(config, 'children', null);
|
2018-04-05 08:23:29 +00:00
|
|
|
|
2020-08-25 14:51:11 +00:00
|
|
|
var container = new Container(this.scene, x, y, children);
|
2018-03-27 20:32:33 +00:00
|
|
|
|
2018-05-02 09:57:26 +00:00
|
|
|
if (addToScene !== undefined)
|
|
|
|
{
|
|
|
|
config.add = addToScene;
|
|
|
|
}
|
|
|
|
|
2018-04-05 08:23:29 +00:00
|
|
|
BuildGameObject(this.scene, container, config);
|
2020-08-25 14:51:11 +00:00
|
|
|
|
2018-03-27 20:32:33 +00:00
|
|
|
return container;
|
2018-03-23 17:15:52 +00:00
|
|
|
});
|