UI 프리팹 해상도 수정

This commit is contained in:
Mingu Kim
2025-02-02 23:44:58 +09:00
parent 7e7c951efb
commit ab61c9cc17
10 changed files with 320 additions and 1250 deletions

View File

@@ -0,0 +1,18 @@
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;
}
}
}