DESKTOP-SAJ6RKV\Administrator c9bc7254cd 1
2025-06-04 18:10:22 +08:00

20 lines
454 B
C#

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 = DataGameSceneManager.Instance.m_GameTimerLen.ToString("F2") + "s";
}
}
}