@petkoneo/phaser3-rex-plugins
Version:
17 lines (14 loc) • 402 B
JavaScript
var RemoveChildrenMap = function (key) {
if (typeof (key) === 'object') {
var gameObject = key;
for (var key in this.childrenMap) {
if (this.childrenMap[key] === gameObject) {
delete this.childrenMap[key];
return this;
}
}
}
delete this.childrenMap[key];
return this;
}
export default RemoveChildrenMap;