20 lines
465 B
C#
20 lines
465 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 = "Time: " + DataGameSceneManager.Instance.m_GameTimerLen.ToString("F2") + "s";
|
||
|
}
|
||
|
}
|
||
|
}
|