Files
aibis-dream/Assets/Scripts/Framework/LogKit/VerText.cs
T
2025-07-08 08:32:46 +00:00

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}";
}
}
}