14 lines
230 B
C#
14 lines
230 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream.Kit
|
|
{
|
|
public class VerText : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
GetComponent<TMP_Text>().text = $"Ver.{Application.version}";
|
|
}
|
|
}
|
|
}
|