2018-04-05 08:23:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @author Felipe Alfonso <@bitnenfer>
|
|
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
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');
|
|
|
|
var GetFastValue = require('../../utils/object/GetFastValue');
|
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
|
|
|
|
*
|
|
|
|
* @param {object} config - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Container} The Game Object that was created.
|
|
|
|
*/
|
2018-03-23 17:15:52 +00:00
|
|
|
GameObjectCreator.register('container', function (config)
|
|
|
|
{
|
2018-04-05 08:23:29 +00:00
|
|
|
var x = GetAdvancedValue(config, 'x', 0);
|
|
|
|
var y = GetAdvancedValue(config, 'y', 0);
|
|
|
|
var add = GetFastValue(config, 'add', true);
|
|
|
|
|
2018-03-27 20:32:33 +00:00
|
|
|
var container = new Container(this.scene, x, y);
|
|
|
|
|
2018-04-05 08:23:29 +00:00
|
|
|
BuildGameObject(this.scene, container, config);
|
2018-03-23 17:15:52 +00:00
|
|
|
|
2018-03-27 20:32:33 +00:00
|
|
|
return container;
|
2018-03-23 17:15:52 +00:00
|
|
|
});
|