hi
when the actor of my game dies, a game over font appears in the middle of the screen and the enemies are still moving; i want some of them to stop moving as soon as the game over appears; how can i do that? thats the code for the game over
thanks
1 2 3 4 5 6 7 8 | public class GameOver extends Actor { public GameOver() { setImage( "GAME OVER.png" ); Greenfoot.playSound( "GameOver.mp3" ); } } |