Add the street background.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful

This commit is contained in:
2026-03-01 10:36:44 +01:00
parent c334f644de
commit 6a3ef5d81e
4 changed files with 14 additions and 4 deletions

View File

@@ -27,6 +27,7 @@ decision/decision.play_rhythm.lua
decision/decision.play_ddr.lua
map/map.manager.lua
map/map.bedroom.lua
map/map.street.lua
screen/screen.manager.lua
screen/screen.home.lua
screen/screen.toilet.lua

9
inc/map/map.street.lua Normal file
View File

@@ -0,0 +1,9 @@
Map.register({
id = "street",
from_x = 30,
from_y = 0,
width = 30,
height = 17,
to_x = 0,
to_y = 0,
})

View File

@@ -1,9 +1,9 @@
Screen.register({
id = "walking_to_home",
name = "Walking to home",
background_color = Config.colors.dark_grey,
decisions = {
"go_to_home",
"go_to_office",
}
},
background = "street"
})

View File

@@ -1,9 +1,9 @@
Screen.register({
id = "walking_to_office",
name = "Walking to office",
background_color = Config.colors.dark_grey,
decisions = {
"go_to_home",
"go_to_office",
}
},
background = "street"
})