feat: game pause

This commit is contained in:
Renge 2022-04-19 12:25:01 -04:00
parent 61ba24da75
commit cc3b005ae7

View File

@ -272,9 +272,17 @@ export default class GameLevel extends Scene {
} }
} }
if (this.gameStateStack.peek() === GameState.STORY) { if (this.gameStateStack.peek() === GameState.STORY) {
if (InputWrapper.isNextJustPressed() && this.gameStateStack.peek() === GameState.STORY) { if (InputWrapper.isNextJustPressed() && this.gameStateStack.peek() === GameState.STORY) {
this.updateStory(); this.updateStory();
} }
}
if (InputWrapper.isPauseJustPressed()) {
if (this.gameStateStack.peek() === GameState.GAMING) {
this.setGameState(GameState.PAUSE);
}
else if (this.gameStateStack.peek() === GameState.PAUSE) {
this.setGameState();
}
} }
//update health UI //update health UI