Added new settings

This commit is contained in:
2024-02-06 12:03:32 +01:00
parent 81670e7df5
commit 651b353340
18 changed files with 221 additions and 66 deletions

@ -0,0 +1,12 @@
@tool
extends Label
func _ready():
update_text()
func update_text():
text = get_parent().name + ":"
func _get_configuration_warnings() -> PackedStringArray:
update_text()
return []