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