2024-02-07 23:01:54 +01:00

12 lines
174 B
GDScript

@tool
extends Label
func _ready():
update_text()
func update_text():
text = name + ":"
func _get_configuration_warnings() -> PackedStringArray:
update_text()
return []