Files
EGJ25/addons/maaacks_menus_template/installer/kenney_input_prompts_dialog.gd
minimata 00037d0270
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 2m5s
feat: base
2025-06-27 23:11:54 +02: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