Open nosymmetree opened 11 years ago
The Spaceship's health is not decreasing when hit by Asteroids.
in asteroidController.js:
function OnTriggerEnter(other:Collider){
if(other.tag == "spaceship") { playerController.health = playerController.health - 3; }
}
The Spaceship's health is not decreasing when hit by Asteroids.