2018-01-16 22:28:29 +00:00
|
|
|
var GameObjectCreator = require('../GameObjectCreator');
|
2017-07-04 00:59:31 +00:00
|
|
|
var Group = require('./Group');
|
|
|
|
|
2018-02-06 01:08:43 +00:00
|
|
|
/**
|
|
|
|
* Creates a new Group Game Object and returns it.
|
|
|
|
*
|
|
|
|
* Note: This method will only be available if the Group Game Object has been built into Phaser.
|
|
|
|
*
|
|
|
|
* @method Phaser.GameObjects.GameObjectCreator#group
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {object} config - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.GameObjects.Group} The Game Object that was created.
|
|
|
|
*/
|
2017-09-14 01:27:29 +00:00
|
|
|
GameObjectCreator.register('group', function (config)
|
2017-07-04 00:59:31 +00:00
|
|
|
{
|
2017-09-17 16:30:41 +00:00
|
|
|
return new Group(this.scene, null, config);
|
2017-09-14 01:27:29 +00:00
|
|
|
});
|
2018-02-06 01:08:43 +00:00
|
|
|
|
|
|
|
// When registering a factory function 'this' refers to the GameObjectCreator context.
|