Removed all editor functionality and improved new viewer-only UI #54

This commit is contained in:
ChaoticByte 2025-02-03 17:40:56 +01:00
parent e40ab18683
commit 9f5011aaac
No known key found for this signature in database
21 changed files with 391 additions and 642 deletions

8
src/VersionLabel.gd Normal file
View file

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