private void OnTriggerEnter(Collider other)
 {
     if (other.gameObject.tag == GameManager.Instance.GetAsteroidTag())
     {
         projectileController.AsteroidHit();
     }
 }