From ccc6a5431c83bb7e8ff954a0a73bcc6443312302 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Thu, 5 Jun 2025 21:31:25 -0700 Subject: [PATCH] Show version if on the Browser --- Assets/Scripts/VersionText.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Assets/Scripts/VersionText.cs b/Assets/Scripts/VersionText.cs index ee403de..8bb30a1 100644 --- a/Assets/Scripts/VersionText.cs +++ b/Assets/Scripts/VersionText.cs @@ -11,5 +11,9 @@ public class VersionText : MonoBehaviour { text.text = "Current: v" + Application.version; } + else + { + text.text = "v" + Application.version; + } } -} +} \ No newline at end of file