UI 수정

This commit is contained in:
정영민
2025-04-09 11:08:50 +09:00
parent 641ac26821
commit cdb30f1e84
11 changed files with 764 additions and 197 deletions

View File

@@ -64,6 +64,16 @@ public class UI_Calendar : UIBase
{
SetActive(false);
}
void Update()
{
if (Input.GetMouseButtonDown(0))
{
if (RectTransformUtility.RectangleContainsScreenPoint(rectTransform, Input.mousePosition))
return;
Close();
}
}
void SetCalendar()
{