Example #1
0
 public void AppendState(StateAction state)
 {
     m_currstateList.Add(state);
 }
Example #2
0
 public void Stop()
 {
     m_currState?.behavior?.Stop();
     m_currState = null;
     isRunning   = false;
 }