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