add inheritance and dynamic background colors for the tile menu

This commit is contained in:
biglyderv 2025-05-14 13:30:49 -04:00
parent 30b8386131
commit ae34f0ea6f
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
4 changed files with 36 additions and 14 deletions

View file

@ -244,3 +244,9 @@ mainTiles.loadSet(
);
let air = mainTiles.resolveID('Vanilla/Air', 'Air');
setTimeout(function () {
for (let tile in mainTiles.tiles) {
mainTiles.tiles[tile].hook ? mainTiles.tiles[tile].hook() : false;
}
}, 400)