2017-11-02 17:04:02 +00:00
|
|
|
var Actions = require('../../actions/');
|
2017-03-22 23:16:44 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2017-11-13 23:32:14 +00:00
|
|
|
var GetFastValue = require('../../utils/object/GetFastValue');
|
2017-04-26 15:03:14 +00:00
|
|
|
var GetValue = require('../../utils/object/GetValue');
|
2017-03-28 22:38:08 +00:00
|
|
|
var Range = require('../../utils/array/Range');
|
2017-11-02 17:04:02 +00:00
|
|
|
var Set = require('../../structs/Set');
|
2017-03-28 02:09:59 +00:00
|
|
|
var Sprite = require('../sprite/Sprite');
|
2017-03-22 23:16:44 +00:00
|
|
|
|
2017-06-26 20:08:08 +00:00
|
|
|
var Group = new Class({
|
2017-03-22 23:16:44 +00:00
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-11-09 03:59:56 +00:00
|
|
|
// children can be either an array of children, or a config object
|
|
|
|
// config can be either a config object, or undefined if passed as the children argument instead
|
2017-07-14 13:30:20 +00:00
|
|
|
function Group (scene, children, config)
|
2017-03-22 23:16:44 +00:00
|
|
|
{
|
2017-11-09 03:59:56 +00:00
|
|
|
if (config === undefined && !Array.isArray(children) && typeof children === 'object')
|
|
|
|
{
|
|
|
|
config = children;
|
|
|
|
children = null;
|
|
|
|
}
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
this.scene = scene;
|
2017-03-27 23:05:08 +00:00
|
|
|
|
2017-03-27 15:59:51 +00:00
|
|
|
this.children = new Set(children);
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-11-09 03:59:56 +00:00
|
|
|
this.isParent = true;
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
this.classType = GetFastValue(config, 'classType', Sprite);
|
2017-11-09 03:59:56 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
this.active = GetFastValue(config, 'active', true);
|
|
|
|
|
|
|
|
this.maxSize = GetFastValue(config, 'maxSize', -1);
|
|
|
|
|
|
|
|
this.defaultKey = GetFastValue(config, 'defaultKey', null);
|
|
|
|
this.defaultFrame = GetFastValue(config, 'defaultFrame', null);
|
|
|
|
this.runChildUpdate = GetFastValue(config, 'runChildUpdate', false);
|
|
|
|
|
|
|
|
this.createCallback = GetFastValue(config, 'createCallback', null);
|
|
|
|
this.removeCallback = GetFastValue(config, 'removeCallback', null);
|
2017-12-02 04:03:22 +00:00
|
|
|
this.createMultipleCallback = GetFastValue(config, 'createMultipleCallback', null);
|
2017-06-30 15:58:42 +00:00
|
|
|
|
|
|
|
if (config)
|
|
|
|
{
|
|
|
|
this.createMultiple(config);
|
|
|
|
}
|
2017-03-22 23:16:44 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
create: function (x, y, key, frame, visible)
|
2017-06-27 15:21:40 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (key === undefined) { key = this.defaultKey; }
|
|
|
|
if (frame === undefined) { frame = this.defaultFrame; }
|
|
|
|
if (visible === undefined) { visible = true; }
|
2017-06-27 15:21:40 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
// Pool?
|
|
|
|
if (this.isFull())
|
2017-06-27 15:21:40 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
return null;
|
2017-06-27 15:21:40 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var child = new this.classType(this.scene, x, y, key, frame);
|
2017-03-22 23:16:44 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
this.scene.sys.displayList.add(child);
|
2017-03-23 00:07:41 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
if (child.preUpdate)
|
2017-11-09 03:59:56 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
this.scene.sys.updateList.add(child);
|
2017-11-09 03:59:56 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
child.visible = visible;
|
2017-03-22 23:16:44 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
this.add(child);
|
2017-03-23 00:07:41 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
return child;
|
2017-03-22 23:16:44 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
createMultiple: function (config)
|
2017-03-28 02:09:59 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (!Array.isArray(config))
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
config = [ config ];
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var output = [];
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
for (var i = 0; i < config.length; i++)
|
|
|
|
{
|
|
|
|
var entries = this.createFromConfig(config[i]);
|
2017-03-28 23:09:16 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
output = output.concat(entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
return output;
|
2017-03-28 02:09:59 +00:00
|
|
|
},
|
|
|
|
|
2017-03-29 00:12:14 +00:00
|
|
|
createFromConfig: function (options)
|
2017-03-28 02:09:59 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
this.classType = GetFastValue(options, 'classType', this.classType);
|
2017-07-12 11:57:53 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var key = GetFastValue(options, 'key', undefined);
|
|
|
|
var frame = GetFastValue(options, 'frame', null);
|
|
|
|
var visible = GetFastValue(options, 'visible', true);
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-03-29 00:12:14 +00:00
|
|
|
var entries = [];
|
|
|
|
|
|
|
|
// Can't do anything without at least a key
|
|
|
|
if (key === undefined)
|
2017-03-28 02:09:59 +00:00
|
|
|
{
|
2017-03-29 00:12:14 +00:00
|
|
|
return entries;
|
2017-03-28 02:09:59 +00:00
|
|
|
}
|
2017-03-29 00:12:14 +00:00
|
|
|
else
|
2017-03-28 02:09:59 +00:00
|
|
|
{
|
2017-03-29 00:12:14 +00:00
|
|
|
if (!Array.isArray(key))
|
|
|
|
{
|
|
|
|
key = [ key ];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Array.isArray(frame))
|
|
|
|
{
|
|
|
|
frame = [ frame ];
|
|
|
|
}
|
2017-03-28 02:09:59 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 22:38:08 +00:00
|
|
|
// Build an array of key frame pairs to loop through
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var repeat = GetFastValue(options, 'repeat', 0);
|
|
|
|
var randomKey = GetFastValue(options, 'randomKey', false);
|
|
|
|
var randomFrame = GetFastValue(options, 'randomFrame', false);
|
|
|
|
var yoyo = GetFastValue(options, 'yoyo', false);
|
|
|
|
var quantity = GetFastValue(options, 'frameQuantity', 1);
|
|
|
|
var max = GetFastValue(options, 'max', 0);
|
2017-03-28 22:38:08 +00:00
|
|
|
|
2017-11-09 03:59:56 +00:00
|
|
|
// If a grid is set we use that to override the quantity?
|
|
|
|
|
2017-03-28 22:38:08 +00:00
|
|
|
var range = Range(key, frame, {
|
|
|
|
max: max,
|
|
|
|
qty: quantity,
|
|
|
|
random: randomKey,
|
|
|
|
randomB: randomFrame,
|
|
|
|
repeat: repeat,
|
|
|
|
yoyo: yoyo
|
2017-03-28 02:09:59 +00:00
|
|
|
});
|
|
|
|
|
2017-03-29 00:12:14 +00:00
|
|
|
for (var c = 0; c < range.length; c++)
|
2017-03-28 22:38:08 +00:00
|
|
|
{
|
2017-03-29 00:12:14 +00:00
|
|
|
entries.push(this.create(0, 0, range[c].a, range[c].b, visible));
|
2017-03-28 22:38:08 +00:00
|
|
|
}
|
|
|
|
|
2017-03-28 23:09:16 +00:00
|
|
|
// Post-creation options (applied only to those items created in this call):
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
var x = GetValue(options, 'setXY.x', 0);
|
|
|
|
var y = GetValue(options, 'setXY.y', 0);
|
|
|
|
var stepX = GetValue(options, 'setXY.stepX', 0);
|
|
|
|
var stepY = GetValue(options, 'setXY.stepY', 0);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-03-28 23:09:16 +00:00
|
|
|
Actions.SetXY(entries, x, y, stepX, stepY);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
var rotation = GetValue(options, 'setRotation.value', 0);
|
|
|
|
var stepRotation = GetValue(options, 'setRotation.step', 0);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-03-28 23:09:16 +00:00
|
|
|
Actions.SetRotation(entries, rotation, stepRotation);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
var scaleX = GetValue(options, 'setScale.x', 1);
|
|
|
|
var scaleY = GetValue(options, 'setScale.y', scaleX);
|
|
|
|
var stepScaleX = GetValue(options, 'setScale.stepX', 0);
|
|
|
|
var stepScaleY = GetValue(options, 'setScale.stepY', 0);
|
2017-03-28 23:44:08 +00:00
|
|
|
|
|
|
|
Actions.SetScale(entries, scaleX, scaleY, stepScaleX, stepScaleY);
|
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
var alpha = GetValue(options, 'setAlpha.value', 1);
|
|
|
|
var stepAlpha = GetValue(options, 'setAlpha.step', 0);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-03-28 23:09:16 +00:00
|
|
|
Actions.SetAlpha(entries, alpha, stepAlpha);
|
2017-03-28 13:01:35 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var hitArea = GetFastValue(options, 'hitArea', null);
|
|
|
|
var hitAreaCallback = GetFastValue(options, 'hitAreaCallback', null);
|
2017-07-13 01:35:29 +00:00
|
|
|
|
|
|
|
if (hitArea)
|
|
|
|
{
|
|
|
|
Actions.SetHitArea(entries, hitArea, hitAreaCallback);
|
|
|
|
}
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var grid = GetFastValue(options, 'gridAlign', false);
|
2017-07-12 11:28:21 +00:00
|
|
|
|
|
|
|
if (grid)
|
|
|
|
{
|
|
|
|
Actions.GridAlign(entries, grid);
|
|
|
|
}
|
|
|
|
|
2017-12-02 04:03:22 +00:00
|
|
|
if (this.createMultipleCallback)
|
|
|
|
{
|
|
|
|
this.createMultipleCallback.call(this, entries);
|
|
|
|
}
|
|
|
|
|
2017-03-28 02:09:59 +00:00
|
|
|
return entries;
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
preUpdate: function (time, delta)
|
2017-03-29 00:12:14 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (!this.runChildUpdate || this.children.size === 0)
|
2017-03-29 00:12:14 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
return;
|
2017-03-29 00:12:14 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
// Because a Group child may mess with the length of the Group during its update
|
|
|
|
var temp = this.children.entries.slice();
|
2017-03-29 00:12:14 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
for (var i = 0; i < temp.length; i++)
|
2017-03-29 00:12:14 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
var item = temp[i];
|
2017-03-29 00:12:14 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
if (item.active)
|
|
|
|
{
|
|
|
|
item.update(time, delta);
|
|
|
|
}
|
2017-03-29 00:12:14 +00:00
|
|
|
}
|
2017-11-13 23:32:14 +00:00
|
|
|
},
|
2017-03-29 00:12:14 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
add: function (child)
|
|
|
|
{
|
|
|
|
this.children.set(child);
|
|
|
|
|
|
|
|
if (this.createCallback)
|
|
|
|
{
|
|
|
|
this.createCallback.call(this, child);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
addMultiple: function (children)
|
|
|
|
{
|
|
|
|
if (Array.isArray(children))
|
|
|
|
{
|
|
|
|
for (var i = 0; i < children.length; i++)
|
|
|
|
{
|
|
|
|
this.add(children[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
2017-03-29 00:12:14 +00:00
|
|
|
},
|
|
|
|
|
2017-03-27 15:59:51 +00:00
|
|
|
remove: function (child)
|
2017-03-23 00:07:41 +00:00
|
|
|
{
|
2017-03-27 15:59:51 +00:00
|
|
|
this.children.delete(child);
|
2017-03-23 00:07:41 +00:00
|
|
|
|
|
|
|
return this;
|
2017-03-22 23:16:44 +00:00
|
|
|
},
|
|
|
|
|
2017-03-27 15:59:51 +00:00
|
|
|
clear: function ()
|
2017-03-23 00:07:41 +00:00
|
|
|
{
|
2017-03-27 15:59:51 +00:00
|
|
|
this.children.clear();
|
2017-03-23 00:07:41 +00:00
|
|
|
|
|
|
|
return this;
|
2017-03-22 23:16:44 +00:00
|
|
|
},
|
|
|
|
|
2017-11-09 03:59:56 +00:00
|
|
|
contains: function (child)
|
|
|
|
{
|
|
|
|
return this.children.contains(child);
|
|
|
|
},
|
|
|
|
|
2017-04-07 14:44:04 +00:00
|
|
|
getChildren: function ()
|
|
|
|
{
|
|
|
|
return this.children.entries;
|
|
|
|
},
|
|
|
|
|
2017-06-16 18:26:26 +00:00
|
|
|
getLength: function ()
|
|
|
|
{
|
|
|
|
return this.children.size;
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
getFirst: function (state, createIfNull, x, y, key, frame, visible)
|
2017-06-19 13:38:22 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (state === undefined) { state = false; }
|
|
|
|
if (createIfNull === undefined) { createIfNull = false; }
|
2017-06-19 13:38:22 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var gameObject;
|
2017-06-19 13:38:22 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var children = this.children.entries;
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
for (var i = 0; i < children.length; i++)
|
|
|
|
{
|
2017-11-17 18:29:09 +00:00
|
|
|
gameObject = children[i];
|
2017-03-28 12:20:39 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
if (gameObject.active === state)
|
|
|
|
{
|
|
|
|
if (typeof(x) === 'number')
|
|
|
|
{
|
|
|
|
gameObject.x = x;
|
|
|
|
}
|
2017-03-29 15:04:51 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
if (typeof(y) === 'number')
|
|
|
|
{
|
|
|
|
gameObject.y = y;
|
|
|
|
}
|
2017-03-29 15:04:51 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
return gameObject;
|
|
|
|
}
|
|
|
|
}
|
2017-08-02 00:24:54 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
// Got this far? We need to create or bail
|
|
|
|
if (createIfNull)
|
|
|
|
{
|
|
|
|
return this.create(x, y, key, frame, visible);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2017-08-02 00:24:54 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
get: function (x, y, key, frame, visible)
|
2017-03-29 15:04:51 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
return this.getFirst(false, true, x, y, key, frame, visible);
|
2017-03-28 12:20:39 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
getFirstAlive: function (createIfNull, x, y, key, frame, visible)
|
2017-03-29 16:11:26 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
return this.getFirst(true, createIfNull, x, y, key, frame, visible);
|
2017-03-29 16:11:26 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
getFirstDead: function (createIfNull, x, y, key, frame, visible)
|
2017-03-30 23:46:19 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
return this.getFirst(false, createIfNull, x, y, key, frame, visible);
|
2017-03-30 23:46:19 +00:00
|
|
|
},
|
|
|
|
|
2017-04-08 00:59:44 +00:00
|
|
|
playAnimation: function (key, startFrame)
|
|
|
|
{
|
|
|
|
Actions.PlayAnimation(this.children.entries, key, startFrame);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
isFull: function ()
|
2017-03-28 13:30:43 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (this.maxSize === -1)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return (this.children.size === this.maxSize);
|
|
|
|
}
|
2017-03-28 12:20:39 +00:00
|
|
|
},
|
|
|
|
|
2017-12-03 17:12:22 +00:00
|
|
|
countActive: function (value)
|
2017-03-28 12:20:39 +00:00
|
|
|
{
|
2017-12-03 17:12:22 +00:00
|
|
|
if (value === undefined) { value = true; }
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
var total = 0;
|
2017-03-28 12:20:39 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
for (var i = 0; i < this.children.size; i++)
|
|
|
|
{
|
2017-12-03 17:12:22 +00:00
|
|
|
if (this.children.entries[i].active === value)
|
2017-11-13 23:32:14 +00:00
|
|
|
{
|
|
|
|
total++;
|
|
|
|
}
|
|
|
|
}
|
2017-03-28 12:20:39 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
return total;
|
2017-03-28 12:20:39 +00:00
|
|
|
},
|
|
|
|
|
2017-12-03 17:12:22 +00:00
|
|
|
getTotalUsed: function ()
|
|
|
|
{
|
|
|
|
return this.countActive();
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
getTotalFree: function ()
|
2017-03-28 12:20:39 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
var used = this.getTotalUsed();
|
|
|
|
var capacity = (this.maxSize === -1) ? 999999999999 : this.maxSize;
|
2017-03-28 12:20:39 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
return (capacity - used);
|
2017-03-28 12:20:39 +00:00
|
|
|
},
|
|
|
|
|
2017-09-14 02:12:00 +00:00
|
|
|
setDepth: function (value, step)
|
2017-06-28 13:16:01 +00:00
|
|
|
{
|
2017-09-14 02:12:00 +00:00
|
|
|
Actions.SetDepth(this.children.entries, value, step);
|
2017-06-28 13:16:01 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
kill: function (gameObject)
|
2017-03-28 14:33:20 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (this.children.contains(gameObject))
|
|
|
|
{
|
|
|
|
gameObject.setActive(false);
|
|
|
|
}
|
2017-03-28 14:33:20 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
killAndHide: function (gameObject)
|
2017-03-28 14:33:20 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
if (this.children.contains(gameObject))
|
|
|
|
{
|
|
|
|
gameObject.setActive(false);
|
|
|
|
gameObject.setVisible(false);
|
|
|
|
}
|
2017-03-28 14:33:20 +00:00
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
toggleVisible: function ()
|
2017-03-28 14:33:20 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
Actions.ToggleVisible(this.children.entries);
|
2017-03-28 14:33:20 +00:00
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
destroy: function ()
|
2017-03-28 12:20:39 +00:00
|
|
|
{
|
2017-11-13 23:32:14 +00:00
|
|
|
this.children.clear();
|
2017-03-28 12:20:39 +00:00
|
|
|
|
2017-11-13 23:32:14 +00:00
|
|
|
this.scene = undefined;
|
|
|
|
this.children = undefined;
|
2017-03-28 12:20:39 +00:00
|
|
|
}
|
2017-03-28 02:09:59 +00:00
|
|
|
|
2017-03-22 23:16:44 +00:00
|
|
|
});
|
|
|
|
|
2017-06-26 20:08:08 +00:00
|
|
|
module.exports = Group;
|