コード例 #1
0
 /// <summary>
 /// Has to be called by derived class once the Behaviour has done what it should do.
 /// This tells the AI Script that this Behaviour is complete and to get a new Behaviour from the Queue.
 /// </summary>
 public virtual void Done()
 {
     OwningCreatureAI.SetAnimation("Idle");
     IsDone = true;
 }