public override void UpdateAction()
 {
     if (!isDone)
     {
         followTarget.UpdateAction();
         if (!timer.IsDone())
         {
             timer.AddTime(Time.deltaTime);
         }
         else
         {
             followTarget.EndAction();
             isDone = true;
         }
     }
 }