Files
GGJ26/addons/maaacks_game_template/installer/kenney_input_prompts_dialog.gd
minimata 44f251ed66
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Successful in 1m1s
Basic game template addon
2026-01-30 19:45:56 +01:00

13 lines
360 B
GDScript

@tool
extends ConfirmationDialog
const SHORT_DESCRIPTION : String = "Choose a style for icons in the input remapping menu. This style can be changed later."
signal configuration_selected(index : int)
func _on_item_list_item_selected(index) -> void:
configuration_selected.emit(index)
func set_short_description() -> void:
%Label.text = SHORT_DESCRIPTION