diff --git a/src/game-lib-a-component-a.js b/src/game-lib-a-component-a.js index bb17561..b63cbdb 100644 --- a/src/game-lib-a-component-a.js +++ b/src/game-lib-a-component-a.js @@ -91,11 +91,7 @@ GameLib.Component.prototype.getDependencies = function() { if ( this.linkedObjects.hasOwnProperty(property) && - property !== 'parentMesh' && - property !== 'parentScene' && - property !== 'parentWorld' && - property !== 'parentEntity' && - property !== 'parentEntityManager' && + property.indexOf('parent') !== 0 && this.hasOwnProperty(property) ){ if (typeof this[property] === 'string') { @@ -304,11 +300,7 @@ GameLib.Component.prototype.buildIdToObject = function() { this.linkedObjects.hasOwnProperty(property) && this.hasOwnProperty(property) && this[property] && - property !== 'parentEntity' && - property !== 'parentScene' && - property !== 'parentMesh' && - property !== 'parentWorld' && - property !== 'parentEntityManager' && + property.indexOf('parent') !== 0 && loaded ) {