Remove some webgl stuff

Browser support is being dropped
This commit is contained in:
2025-07-01 22:53:58 -07:00
parent b1e479472f
commit 4e95668675
3 changed files with 4 additions and 17 deletions

View File

@@ -7,13 +7,6 @@ public class VersionText : MonoBehaviour
void Awake()
{
text = gameObject.GetComponent<TMP_Text>();
if (Application.platform != RuntimePlatform.WebGLPlayer)
{
text.text = "Current: v" + Application.version;
}
else
{
text.text = "v" + Application.version;
}
text.text = "Current: v" + Application.version;
}
}