miggor-StreamGraph/graph_node_renderer/about_dialog.gd
2023-12-15 01:55:28 +03:00

8 lines
238 B
GDScript

extends AcceptDialog
class_name AboutDialog
@onready var version_label: Label = %VersionLabel
func _ready() -> void:
var version: String = ProjectSettings.get_setting("application/config/version")
version_label.text = "v%s" % version