diff --git a/src/scene/scene_graphnode.js b/src/scene/scene_graphnode.js index b34e369074c..f21be6df686 100644 --- a/src/scene/scene_graphnode.js +++ b/src/scene/scene_graphnode.js @@ -141,7 +141,9 @@ pc.extend(pc, function () { clone.dirtyWorld = this.dirtyWorld; clone._enabled = this._enabled; - clone._enabledInHierarchy = this._enabledInHierarchy; + + // false as this node is not in the hierarchy yet + clone._enabledInHierarchy = false; }, clone: function () {