Tweaks and uncommitted stuff

I forgor
This commit is contained in:
2025-06-02 15:18:52 -07:00
parent fa71995974
commit 0c6401cb64
8 changed files with 105 additions and 90 deletions

View File

@@ -0,0 +1,10 @@
using TMPro;
using UnityEngine;
public class VersionText : MonoBehaviour
{
void Awake()
{
gameObject.GetComponent<TMP_Text>().text = "v" + Application.version;
}
}