using TMPro; using UnityEngine; public class UI_GameVersion : MonoBehaviour { private TextMeshProUGUI _TextMesh; private void Awake() { _TextMesh = GetComponent(); _TextMesh.text = "v" + Application.version; } }