Exemplo n.º 1
0
        public override TreeBaseNode WalkGraphToCreateTree(BehaviourTree.BehaviourTree tree, Context currentContext)
        {
            var node = new TreeLeafDebugNode(tree, currentContext)
            {
                debugMessage = debugNote
            };

            return(node);
        }
Exemplo n.º 2
0
 protected override void OnCreation()
 {
     debugNode    = new TreeLeafDebugNode(null, null);
     thisTreeNode = debugNode;
 }