완료 시간 알람 디자인 작업

This commit is contained in:
정영민
2025-03-18 16:23:09 +09:00
parent a3a677ccc1
commit 7e5532c136
45 changed files with 632 additions and 2642 deletions

View File

@@ -12,6 +12,7 @@ namespace CHN
{
public UI_CompleteTimeAlarmInfo prefab_completeTimeAlarmInfo;
public ScrollRect ScrollView_CompleteAlramHistory;
public Button Button_Close;
public Dictionary<string, UI_CompleteTimeAlarmInfo> completeInfoList = new();
public List<UI_CompleteTimeAlarmInfo> notCheckAlramList = new();
@@ -25,25 +26,12 @@ namespace CHN
public override void AfterAwake()
{
prefab_completeTimeAlarmInfo = Resources.Load<UI_CompleteTimeAlarmInfo>("Prefabs/UI/PRF_UI_CompleteTimeAlramInfo");
Button_Close.onClick.AddListener(Close);
notCheckAlramList.Clear();
completeInfoList.Clear();
SetActive(false);
}
public void SetActive()
{
var isActive = rectTransform.gameObject.activeSelf;
var active = isActive ? false : true;
if (active)
{
Open();
}
else
{
Close();
}
}
public void Open()
{
onOpen?.Invoke("완료 시간 알람");