Example #1
0
    // end mock

    // Use this for initialization
    void Start()
    {
        enemy = GameManagement.GM.player;
        nt    = new TrainedNN(textAsset);


        CreateTree();
    }
Example #2
0
 public BehaviourTree(Node root, TrainedNN network)
 {
     this.root    = root;
     this.network = network;
 }