Work on full profile and on switching the window state

This commit is contained in:
2025-08-07 10:24:47 -04:00
parent fb312401cd
commit ed4ddfdf5d
8 changed files with 163 additions and 4 deletions

View File

@@ -32,6 +32,13 @@ func setup_visitor_ui(spawner: VisitorSpawner)-> void:
func end_shift() -> void:
active = false
panel.switch_panel(active)
var window = get_window()
window.mode = Window.MODE_WINDOWED
window.position = Vector2i(800,800)
window.content_scale_size = Vector2i(345,500)
top_menu.hide()
panel.get_parent().global_position = Vector2i(5,5)
window.size = Vector2i(345,500)
func notice(msg : String, time : float = 1) -> void:
panel.notice(msg, time)