hide lore entries during options screen (fixes #93)

This commit is contained in:
Haze Weathers 2023-05-11 14:48:24 -04:00
parent 0006f02a0f
commit 09a15604f1
2 changed files with 5 additions and 3 deletions

View file

@ -34,6 +34,7 @@ func _on_Restart_pressed():
func _on_Settings_pressed():
$LoreContainer.visible = false
options_screen.focus()
@ -45,4 +46,5 @@ func _on_ExitLevel_pressed():
func _on_OptionsScreen_exit():
options_screen.visible = false
$LoreContainer.visible = true
$Body/Settings.grab_focus()