feat: back button maybe standard bottom right?

This commit is contained in:
tiger tiger tiger 2026-01-23 16:31:14 +01:00
parent f8f50a0755
commit fc3ad3a555
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func _delayed_ready() ->void:
## Updates prompt label based on the interaction type and collected state ## Updates prompt label based on the interaction type and collected state
func _show_prompt() -> void: func _show_prompt() -> void:
var overrides : Array[StringName] = [&"menu_back"] var overrides : Array[StringName] = [&"menu_back"]
P.left_bottom(P.pick(&"ui_cancel"), overrides) P.right_bottom(P.pick(&"ui_cancel"), overrides)
P.instruction(I18n.get_memento_prompt(mementos_collected)) P.instruction(I18n.get_memento_prompt(mementos_collected))
P.performed.connect(_perform) P.performed.connect(_perform)