mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-24 14:06:16 -04:00
Automatic deploy 29010003
This commit is contained in:
parent
0c6f20a687
commit
df04c652db
4 changed files with 19 additions and 10 deletions
|
@ -480,7 +480,7 @@ const upgrades = [
|
|||
"id": "slow_down",
|
||||
"name": "Slower ball",
|
||||
"max": 2,
|
||||
"help": "Slows down the ball",
|
||||
"help": "slow down the ball",
|
||||
extraLevelsHelp: `Make it even slower`
|
||||
},
|
||||
{
|
||||
|
@ -1887,7 +1887,7 @@ function render() {
|
|||
if (isSettingOn("mobile-mode")) {
|
||||
ctx.fillRect(offsetXRoundedDown, gameZoneHeight, gameZoneWidthRoundedUp, 1);
|
||||
if (!running) {
|
||||
drawText(ctx, "Keep pressing here to play", puckColor, puckHeight, {
|
||||
drawText(ctx, "Press and hold here to play", puckColor, puckHeight, {
|
||||
x: canvas.width / 2, y: gameZoneHeight + (canvas.height - gameZoneHeight) / 2,
|
||||
});
|
||||
}
|
||||
|
@ -2612,7 +2612,8 @@ Click an item above to start a test run with it.
|
|||
|
||||
...optionsList,
|
||||
|
||||
(document.fullscreenEnabled || document.webkitFullscreenEnabled) && (document.fullscreenElement !== null ? {
|
||||
(document.fullscreenEnabled || document.webkitFullscreenEnabled) &&
|
||||
(document.fullscreenElement !== null ? {
|
||||
text: "Exit Fullscreen",
|
||||
help: "Might not work on some machines",
|
||||
value() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue