SpielBackupAlt/addons/dialogic/Editor/Common/TLabel.gd

10 lines
168 B
GDScript3
Raw Normal View History

2024-12-26 14:54:06 +00:00
tool
extends Label
export var text_key : String = ""
func set_text_from_key(value):
text = DTS.translate(value)
func _ready():
set_text_from_key(text_key)