private void OnTriggerEnter(Collider other)
 {
     if (other.CompareTag("fighter"))
     {
         trtCtrl.OnEnemySighted(other);
     }
 }