Add marketplace button functionality and skill unlocker integration

This commit is contained in:
2025-06-05 22:50:45 +02:00
parent 87b85cae43
commit cc737f22cf
16 changed files with 167 additions and 7 deletions

View File

@@ -45,7 +45,6 @@ func _ready() -> void:
Console.console_closed.connect(_on_console_close)
func _unhandled_input(event: InputEvent) -> void:
if event.is_action_pressed("pause") and not is_console_open:
if UiManager.is_visible_on_stack(pause_menu_control):
@@ -78,6 +77,8 @@ func _on_exit_to_menu_button_pressed() -> void:
printerr("PauseMenu: Exit to menu scene not set.")
return
gm.resume_game()
gm.reset_current_session_state()
get_tree().change_scene_to_packed(exit_to_menu_scene)