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