Fragmented/src/VersionLabel.gd

9 lines
227 B
GDScript3
Raw Normal View History

extends Label
func _ready():
text = ProjectSettings.get_setting("application/config/name") \
+ " " \
+ ProjectSettings.get_setting("application/config/version") \
+ " | Godot " \
+ Engine.get_version_info()["string"]