feat: lighting system

- Added lamp bundle
- Moved door collider to its children
- Updated level structure
This commit is contained in:
Alexey 2026-03-31 13:37:54 +03:00
commit 08751ff12f
12 changed files with 134 additions and 31 deletions

View file

@ -111,3 +111,13 @@ h = 2
[[interactive.containers.items]]
id = "lockpick"
rotated = true
[[interactive.lamps]]
x = 8
y = 3
[[interactive.lamps]]
x = 8
y = 7
intensity = 3
radius = 6

View file

@ -52,3 +52,8 @@ containers = [
],
},
]
lamps = [
{ x = 8, y = 3 },
{ x = 8, y = 7, intensity = 3, radius = 16 },
{ x = 8, y = 11, intensity = 2, radius = 16 },
]