Is there a way that I could make the game pause for a second or two after something happens so that the player has a moment to realize what is happening between level changes.
byte actsPassed = 0;
public void act() {
if(actsPassed <= 100) {
actsPassed++;
}else {
//insert normal act code here
}
}Greenfoot.delay(100);
Greenfoot.delay(100);