コード例 #1
0
ファイル: Node.cs プロジェクト: haolly/behaviac
        public bool ResetPrefabInstances(string prefabName, Node instanceRootNode) {
            bool reset = instanceRootNode.ResetByPrefab(prefabName, this);

            if (!(this is ReferencedBehavior)) {
                foreach(Node child in this.Children) {
                    reset |= child.ResetPrefabInstances(prefabName, instanceRootNode);
                }
            }

            return reset;
        }