12 lines
187 B
GDScript
12 lines
187 B
GDScript
@tool
|
|
extends Label
|
|
|
|
func _ready():
|
|
update_text()
|
|
|
|
func update_text():
|
|
text = get_parent().name + ":"
|
|
|
|
func _get_configuration_warnings() -> PackedStringArray:
|
|
update_text()
|
|
return [] |