mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-23 05:26:15 -04:00
Build 29068563
This commit is contained in:
parent
6ef13f2d19
commit
df8bfbb350
25 changed files with 384 additions and 336 deletions
|
@ -74,7 +74,7 @@ import { getHistory } from "./gameOver";
|
|||
import { generateSaveFileContent } from "./generateSaveFileContent";
|
||||
import { runHistoryViewerMenuEntry } from "./runHistoryViewer";
|
||||
import { getNearestUnlockHTML, openScorePanel } from "./openScorePanel";
|
||||
import {monitorLevelsUnlocks} from "./monitorLevelsUnlocks";
|
||||
import { monitorLevelsUnlocks } from "./monitorLevelsUnlocks";
|
||||
|
||||
export async function play() {
|
||||
if (await applyFullScreenChoice()) return;
|
||||
|
@ -298,8 +298,8 @@ export async function openUpgradesPicker(gameState: GameState) {
|
|||
`,
|
||||
...actions,
|
||||
|
||||
getNearestUnlockHTML(gameState),
|
||||
pickedUpgradesHTMl(gameState),
|
||||
getNearestUnlockHTML(gameState),
|
||||
|
||||
`<div id="level-recording-container"></div>`,
|
||||
],
|
||||
|
@ -424,7 +424,7 @@ setInterval(() => {
|
|||
}, 1000);
|
||||
|
||||
setInterval(() => {
|
||||
monitorLevelsUnlocks(gameState)
|
||||
monitorLevelsUnlocks(gameState);
|
||||
}, 500);
|
||||
|
||||
window.addEventListener("visibilitychange", () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue