Compare commits

...

1 Commits

Author SHA1 Message Date
e9ac5c757e Add the street background.
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-03-01 10:48:02 +01:00
4 changed files with 12 additions and 2 deletions

View File

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

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

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

View File

@@ -5,5 +5,5 @@ Screen.register({
"go_to_toilet", "go_to_toilet",
"go_to_walking_to_office", "go_to_walking_to_office",
}, },
background = "bedroom", background = "bedroom"
}) })

View File

@@ -1,7 +1,6 @@
Screen.register({ Screen.register({
id = "office", id = "office",
name = "Office", name = "Office",
background_color = Config.colors.dark_grey,
decisions = { decisions = {
"play_button_mash", "play_button_mash",
"play_rhythm", "play_rhythm",
@@ -12,4 +11,5 @@ Screen.register({
situations = { situations = {
"drink_coffee", "drink_coffee",
}, },
background = "office"
}) })