mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-24 22:16:14 -04:00
Automatic deploy 29007301
This commit is contained in:
parent
1cec9a7a0c
commit
e4a0d149ab
6 changed files with 2551 additions and 9 deletions
|
@ -19,7 +19,7 @@ allLevels = allLevels.filter(l => {
|
|||
return true
|
||||
})
|
||||
allLevels.forEach((l, li) => {
|
||||
l.threshold = li < 8 ? 0 : Math.round(Math.min(Math.pow(10, 1 + (li + l.size) / 30) * 10, 10000) * (li))
|
||||
l.threshold = li < 8 ? 0 : Math.round(Math.min(Math.pow(10, 1 + (li + l.size) / 30) * 10, 5000) * (li))
|
||||
l.sortKey = (Math.random() + 3) / 3.5 * l.bricks.filter(i => i).length
|
||||
})
|
||||
|
||||
|
|
|
@ -8,16 +8,16 @@
|
|||
/>
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
||||
<title>Breakout 71</title>
|
||||
<link rel="stylesheet" href="style.css?v=29007124" />
|
||||
<link rel="stylesheet" href="style.css?v=29007301" />
|
||||
<link rel="icon" href="./icon.svg" />
|
||||
</head>
|
||||
<body>
|
||||
<button id="menu">☰<span> menu</span></button>
|
||||
<button id="score"></button>
|
||||
<canvas id="game"></canvas>
|
||||
<script>window.appVersion="?v=29007124".slice(3)</script>
|
||||
<script>window.appVersion="?v=29007301".slice(3)</script>
|
||||
<script src="gif.js"></script>
|
||||
<script src="levels.js?v=29007124"></script>
|
||||
<script src="game.js?v=29007124"></script>
|
||||
<script src="levels.js?v=29007301"></script>
|
||||
<script src="game.js?v=29007301"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue