Support fixes (#445)

Co-authored-by: Dennis Ploeger <develop@dieploegers.de>
This commit is contained in:
Dennis Ploeger
2021-11-17 22:27:57 +01:00
committed by GitHub
parent 58c7484338
commit 37b0c6c0f1
3 changed files with 13 additions and 6 deletions

View File

@@ -183,7 +183,8 @@ func mousewheel_action(_direction: int):
func hide_ui():
$ui/Control.hide()
verbs_menu.hide()
room_select.hide()
if ProjectSettings.get("escoria/debug/enable_room_selector") == true:
room_select.hide()
inventory_ui.hide()
tooltip.hide()
@@ -191,7 +192,8 @@ func hide_ui():
func show_ui():
$ui/Control.show()
verbs_menu.show()
room_select.show()
if ProjectSettings.get("escoria/debug/enable_room_selector") == true:
room_select.show()
inventory_ui.show()
tooltip.show()