WeiterspielenButton

This commit is contained in:
Lars Alteköster 2022-01-24 09:40:55 +01:00
parent 8efcc29244
commit e818be6c17
9 changed files with 9 additions and 0 deletions

View File

@ -603,6 +603,15 @@ public class HappyBirdMain extends Application {
pause.getChildren().clear();
pane.getChildren().remove(pause);
/*Pausieren der Transitions/ Pipes*/
for(Transition transition : transitions) {
transition.play();
System.out.println(transition.toString());
}
/*Pausieren der Timeline, sodass keine neuen Pipes spawnen*/
timeline.play();
/*gameRunning auf false setzen, da sonst 2x Click auf Pause-Button bzw. ESC*/
gameRunning = false;
}