상단 UI 디자인 작업

This commit is contained in:
정영민
2025-03-18 13:57:27 +09:00
parent cea9d151ca
commit 201ec99bfe
102 changed files with 7167 additions and 3733 deletions

View File

@@ -14,6 +14,7 @@ namespace CHN
private Dictionary<string, GameObject> originDashBoardItems = new();
public SDictionary<string, UI_DashboardCheckListItem> dashboardItemList = new();
public Action onCloseDashboard;
public void Init(Dictionary<string, GameObject> items)
{
prf_item = Resources.Load<UI_DashboardCheckListItem>("Prefabs/UI/UI_DashboardCheckListItem");
@@ -58,6 +59,7 @@ namespace CHN
if (EventSystem.current.currentSelectedGameObject != null)
return;
transform.parent.gameObject.SetActive(false);
onCloseDashboard?.Invoke();
}
}
}