Files
impostor/inc/screen/screen.home.lua
Zoltan Timar b349ded281
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed
feat: added intro sequence, fixed norman's sprite, placed him in various places
2026-03-12 18:10:50 +01:00

17 lines
339 B
Lua

Screen.register({
id = "home",
name = "Home",
decisions = {
"go_to_toilet",
"go_to_walking_to_office",
"go_to_sleep",
"go_to_end",
},
background = "bedroom",
draw = function()
if Context.home_norman_visible and Window.get_current_id() == "game" then
Sprite.draw_at("norman", 100, 80)
end
end
})