11 lines
194 B
C#
11 lines
194 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
|
|
public class VersionText : MonoBehaviour
|
|
{
|
|
void Awake()
|
|
{
|
|
gameObject.GetComponent<TMP_Text>().text = "Current: v" + Application.version;
|
|
}
|
|
}
|