10 lines
264 B
GDScript
10 lines
264 B
GDScript
extends RichTextLabel
|
|
|
|
|
|
func _ready() -> void:
|
|
AutoUpdate.update_version_text.connect(update_version)
|
|
update_version(tr("au_loading"))
|
|
|
|
|
|
func update_version(version: StringName):
|
|
text = tr("vr_version") + preload("res://version.tres").version + "\n" + version
|