gd: added menu template

This commit is contained in:
2025-06-10 18:46:20 +02:00
parent f9a6c42b14
commit c554e24b01
421 changed files with 12371 additions and 2 deletions

View File

@ -0,0 +1,12 @@
@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