예제 #1
0
    public void Update()
    {
        if (gameManager == null)
        {
            return;
        }

        if (timeUI.timeText != null)
        {
            timeUI.timeText.text = "time : " + (CommonConfig.Time - gameManager.timeManager.currentTime).ToString("0.00");
        }

        if (DebugText != null)
        {
            DebugText.update();
        }
    }