예제 #1
0
 // Update is called once per frame
 void Update()
 {
     foreach (AIAgent agent in agents)
     {
         if (!agent.isBusy())
         {
             rootNode.doTree(agent);
         }
     }
 }