Files
source/Assets/Scripts/VersionText.cs
Lncvrt 4e95668675 Remove some webgl stuff
Browser support is being dropped
2025-07-01 22:53:58 -07:00

12 lines
241 B
C#

using TMPro;
using UnityEngine;
public class VersionText : MonoBehaviour
{
private TMP_Text text;
void Awake()
{
text = gameObject.GetComponent<TMP_Text>();
text.text = "Current: v" + Application.version;
}
}