Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/PauseUI.cs
2025-02-02 23:44:58 +09:00

19 lines
348 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace TON
{
public class PauseUI : UIBase
{
public void OnPressPause()
{
UIManager.Show<PauseUI>(UIList.PauseUI);
Debug.Log("버튼 클릭");
Time.timeScale = 0f;
}
}
}