Lots of localization setup, added controller BBCode stuff also.

This commit is contained in:
2025-05-25 14:09:40 -05:00
parent f5cb84e0c9
commit 6a39e1f2df
825 changed files with 16497 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
@tool
extends ConfirmationDialog
signal path_selected(path: String)
var editor_interface : EditorInterface
@onready var n_selector := $ControllerIconPathSelector
func populate():
n_selector.populate(editor_interface)
func _on_controller_icon_path_selector_path_selected(path) -> void:
path_selected.emit(path)
hide()
func _on_confirmed() -> void:
path_selected.emit(n_selector.get_icon_path())