void checkDeath()
 {
     if (health <= 0)
     {
         FishManager.removeFish(gameObject);
         ai.changeState(FishAI.states.dead);
     }
 }