Files
aibis-dream/Assets/Scripts/Framework/LogKit/VerText.cs
T
dingyuntian 9f20ef52d8 UI工具翻新
1. 增加UI工具
2. 增加设置页面
3. GameLoop更新
4. 导入ActionKit工具
2025-04-21 18:53:30 +08: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}";
}
}
}