Use wall + floor assets from Pixel dungeon

This commit is contained in:
Peter Stockings
2026-01-04 16:46:49 +11:00
parent 6a050ac7a9
commit 42cd77998d
7 changed files with 152 additions and 131 deletions

View File

@@ -30,7 +30,7 @@ export const GAME_CONFIG = {
},
rendering: {
tileSize: 24,
tileSize: 16,
cameraZoom: 2,
wallColor: 0x2b2b2b,
floorColor: 0x161616,
@@ -44,6 +44,15 @@ export const GAME_CONFIG = {
visibleMaxAlpha: 1.0,
visibleStrengthFactor: 0.65
},
terrain: {
empty: 1,
wall: 4,
water: 63,
emptyDeco: 24,
wallDeco: 12,
exit: 8
},
ui: {
minimapPanelWidth: 340,