12 lines
174 B
GDScript3
Raw Normal View History

2024-02-06 11:03:32 +00:00
@tool
extends Label
func _ready():
update_text()
func update_text():
text = name + ":"
func _get_configuration_warnings() -> PackedStringArray:
update_text()
return []