Added Load Level Item List with back button that works

This commit is contained in:
Willow Behar
2024-05-09 14:57:28 -05:00
parent c0ff8015d3
commit 8d5282191b
2 changed files with 25 additions and 1 deletions

View File

@ -19,4 +19,10 @@ func _on_settings_pressed():
func _on_load_level_pressed():
pass # Replace with function body.
$VBoxContainer.hide()
$ItemList.show()
func _on_item_list_item_clicked(index, at_position, mouse_button_index):
if index == 0:
$ItemList.hide()
$VBoxContainer.show()