20 lines
465 B
C#
Raw Normal View History

2025-06-04 05:06:28 +08:00
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
namespace GameLogic
{
public class UIGJSK : MonoBehaviour
{
// Start is called before the first frame update
public TextMeshProUGUI m_timerText;
// Update is called once per frame
void Update()
{
m_timerText.text = "Time: " + DataGameSceneManager.Instance.m_GameTimerLen.ToString("F2") + "s";
}
}
}