feat: 우측 상단 더보기 옵션 버튼 UI 구성 수정

This commit is contained in:
aube.lee
2025-02-13 23:28:42 +09:00
parent bf2883ce74
commit 3f446b5aa0
10 changed files with 414 additions and 1996 deletions

View File

@@ -22,7 +22,7 @@ namespace TON
}
UIManager.Show<LobbyUI>(UIList.LobbyUI);
UIManager.Show<IngameOptionUI>(UIList.IngameOptionUI);
UIManager.Show<OptionUI>(UIList.OptionUI);
}

View File

@@ -21,7 +21,7 @@ namespace TON
}
UIManager.Show<IngameUI>(UIList.IngameUI);
UIManager.Show<IngameOptionUI>(UIList.IngameOptionUI);
UIManager.Show<OptionUI>(UIList.OptionUI);
UIManager.Show<ControllerUI>(UIList.ControllerUI);
// 선택된 캐릭터에 맞는 오브젝트를 생성하거나 적용하는 코드 작성
@@ -37,7 +37,7 @@ namespace TON
yield return null;
UIManager.Hide<IngameUI>(UIList.IngameUI);
UIManager.Hide<IngameOptionUI>(UIList.IngameOptionUI);
UIManager.Hide<OptionUI>(UIList.OptionUI);
UIManager.Hide<ControllerUI>(UIList.ControllerUI);
}