public void AttackTargetDie(Transform target)
 {
     if (commander != null)
     {
         commander.CommandFollowerInvade(this);
     }
     if (OnAttackTargetDie != null)
     {
         OnAttackTargetDie(this, target);
     }
 }