mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-06-18 04:04:53 -04:00
Build 29069860
This commit is contained in:
parent
13627b6c09
commit
b565d47c56
8 changed files with 19 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
|||
// The version of the cache.
|
||||
const VERSION = "29069848";
|
||||
const VERSION = "29069860";
|
||||
|
||||
// The name of the cache
|
||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||
|
|
|
@ -68,21 +68,21 @@
|
|||
{
|
||||
"name": "Swiss",
|
||||
"size": 7,
|
||||
"bricks": "________RRRRR__RRWRR__RWWWR__RRWRR__RRRRR",
|
||||
"bricks": "________RRRRR__RRWRR__RWWWR__RRWRR__RRRRR________",
|
||||
"svg": 13,
|
||||
"color": ""
|
||||
},
|
||||
{
|
||||
"name": "Germany",
|
||||
"size": 6,
|
||||
"bricks": "_______gggg__rrrr__yyyy",
|
||||
"size": 4,
|
||||
"bricks": "____ggggrrrryyyy",
|
||||
"svg": 8,
|
||||
"color": "#5da3ea"
|
||||
},
|
||||
{
|
||||
"name": "France",
|
||||
"size": 8,
|
||||
"bricks": "_________ttWWrr__ttWWrr__ttWWrr__ttWWrr__ttWWrr________",
|
||||
"size": 6,
|
||||
"bricks": "______ttWWrrttWWrrttWWrrttWWrrttWWrr",
|
||||
"svg": null,
|
||||
"color": ""
|
||||
},
|
||||
|
@ -731,8 +731,8 @@
|
|||
},
|
||||
{
|
||||
"name": "China",
|
||||
"size": 8,
|
||||
"bricks": "_________RRyRRR__RyRyRR__RRyRRR__RRRRRR",
|
||||
"size": 6,
|
||||
"bricks": "______RRyRRRRyRyRRRRyRRRRRRRRR______",
|
||||
"svg": null,
|
||||
"color": ""
|
||||
},
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29069848"
|
||||
"29069860"
|
||||
|
|
|
@ -20,12 +20,8 @@ export function levelIconHTML(
|
|||
c.width = size;
|
||||
c.height = size;
|
||||
|
||||
if (color) {
|
||||
ctx.fillStyle = color;
|
||||
ctx.fillRect(0, 0, size, size);
|
||||
} else {
|
||||
ctx.clearRect(0, 0, size, size);
|
||||
}
|
||||
ctx.clearRect(0, 0, size, size);
|
||||
|
||||
const pxSize = size / levelSize;
|
||||
for (let x = 0; x < levelSize; x++) {
|
||||
for (let y = 0; y < levelSize; y++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue