Example #1
0
 /// <summary>
 /// Update this instance.
 /// </summary>
 public override void Update()
 {
     if (!action.IsFinish())
     {
         action.Update();
         if (action.isForwardEnable())
         {
             hero.Forward = -action.FORWARD;
         }
     }
 }