private void OnTriggerEnter(Collider other) { if (other.gameObject.tag == GameManager.Instance.GetProjectileTag() || other.gameObject.tag == GameManager.Instance.GetPlayerShipTag()) { asteroidController.Explode(); } }