mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
Added a button to return to the menu after a puzzle is completed (#1170)
* added another button to return to the menu * improved menu return * fixed continue button to not go back to menu
This commit is contained in:
parent
63482e36db
commit
8e25818999
@ -52,12 +52,22 @@ export class HUDPuzzleCompleteNotification extends BaseHUDPart {
|
|||||||
this.updateState();
|
this.updateState();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.btnClose = document.createElement("button");
|
this.continueBtn = document.createElement("button");
|
||||||
this.btnClose.classList.add("close", "styledButton");
|
this.continueBtn.classList.add("close", "styledButton");
|
||||||
this.btnClose.innerText = T.ingame.puzzleCompletion.buttonSubmit;
|
this.continueBtn.innerText = T.ingame.puzzleCompletion.continueBtn;
|
||||||
dialog.appendChild(this.btnClose);
|
dialog.appendChild(this.continueBtn);
|
||||||
|
|
||||||
this.trackClicks(this.btnClose, this.close);
|
this.menuBtn = document.createElement("button");
|
||||||
|
this.menuBtn.classList.add("close", "styledButton");
|
||||||
|
this.menuBtn.innerText = T.ingame.puzzleCompletion.menuBtn;
|
||||||
|
dialog.appendChild(this.menuBtn);
|
||||||
|
|
||||||
|
this.trackClicks(this.continueBtn, () => {
|
||||||
|
this.close(false);
|
||||||
|
});
|
||||||
|
this.trackClicks(this.menuBtn, () => {
|
||||||
|
this.close(true);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
updateState() {
|
updateState() {
|
||||||
@ -79,13 +89,16 @@ export class HUDPuzzleCompleteNotification extends BaseHUDPart {
|
|||||||
return this.visible;
|
return this.visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
close() {
|
close(toMenu) {
|
||||||
/** @type {PuzzlePlayGameMode} */ (this.root.gameMode)
|
/** @type {PuzzlePlayGameMode} */ (this.root.gameMode)
|
||||||
.trackCompleted(this.userDidLikePuzzle, Math.round(this.timeOfCompletion))
|
.trackCompleted(this.userDidLikePuzzle, Math.round(this.timeOfCompletion))
|
||||||
.then(() => {
|
.then(() => {
|
||||||
// this.root.gameState.moveToState("PuzzleMenuState");
|
if (toMenu) {
|
||||||
this.visible = false;
|
this.root.gameState.moveToState("PuzzleMenuState");
|
||||||
this.cleanup();
|
} else {
|
||||||
|
this.visible = false;
|
||||||
|
this.cleanup();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -626,7 +626,8 @@ ingame:
|
|||||||
titleRating: How difficult did you find the puzzle?
|
titleRating: How difficult did you find the puzzle?
|
||||||
titleRatingDesc: Your rating will help me to make you better suggestions in the future
|
titleRatingDesc: Your rating will help me to make you better suggestions in the future
|
||||||
|
|
||||||
buttonSubmit: Continue
|
continueBtn: Continue
|
||||||
|
menuBtn: Menu
|
||||||
|
|
||||||
puzzleMetadata:
|
puzzleMetadata:
|
||||||
author: Author
|
author: Author
|
||||||
|
Loading…
Reference in New Issue
Block a user