mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 20:46:14 -04:00
Build 29038466
This commit is contained in:
parent
ffdbd71a88
commit
83b9b8b9e8
12 changed files with 7661 additions and 80 deletions
|
@ -1284,9 +1284,7 @@ export function append<T>(
|
|||
where.list[where.indexMin].destroyed = false;
|
||||
makeItem(where.list[where.indexMin]);
|
||||
where.indexMin++;
|
||||
console.log("Reused item " + where.indexMin);
|
||||
} else {
|
||||
console.log("Created item " + where.indexMin);
|
||||
const p = { destroyed: false };
|
||||
makeItem(p);
|
||||
where.list.push(p);
|
||||
|
@ -1321,5 +1319,3 @@ export function forEachLiveOne<T>(
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
//TODO check destroyed usage in code
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue