mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-03-02 03:39:21 +00:00
DLC: Next Puzzle button & Search functionality, other stuff
This commit is contained in:
25
src/js/game/hud/parts/HUDPuzzleNextPuzzle.js
Normal file
25
src/js/game/hud/parts/HUDPuzzleNextPuzzle.js
Normal file
@@ -0,0 +1,25 @@
|
||||
import { makeDiv } from "../../../core/utils";
|
||||
import { T } from "../../../translations";
|
||||
import { PuzzlePlayGameMode } from "../../modes/puzzle_play";
|
||||
import { BaseHUDPart } from "../base_hud_part";
|
||||
|
||||
export class HUDPuzzleNextPuzzle extends BaseHUDPart {
|
||||
createElements(parent) {
|
||||
this.element = makeDiv(parent, "ingame_HUD_PuzzleNextPuzzle");
|
||||
this.button = document.createElement("button");
|
||||
this.button.classList.add("button");
|
||||
this.button.innerText = T.ingame.puzzleCompletion.nextPuzzle;
|
||||
this.element.appendChild(this.button);
|
||||
|
||||
this.trackClicks(this.button, this.nextPuzzle);
|
||||
}
|
||||
|
||||
initialize() {}
|
||||
|
||||
nextPuzzle() {
|
||||
const gameMode = /** @type {PuzzlePlayGameMode} */ (this.root.gameMode);
|
||||
this.root.gameState.moveToState("PuzzleMenuState", {
|
||||
continueQueue: gameMode.nextPuzzles,
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user