10 lines
169 B
GDScript3
Raw Normal View History

2024-02-06 14:51:48 +00:00
@tool
extends Label
func _ready():
text = get_parent().name + ":"
2024-02-27 20:05:55 +00:00
func _get_configuration_warnings() -> PackedStringArray:
2024-02-06 14:51:48 +00:00
text = get_parent().name + ":"
return []