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

11 lines
190 B
GDScript3
Raw Permalink 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():
if text_key != '':
set_text_from_key(text_key)