DO-71 [Feat] 메뉴 표시까지만

This commit is contained in:
Jay 2025-03-27 17:42:09 +09:00
parent 798c0499e4
commit 32cfcb02a6
3 changed files with 14 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class GameUIController : MonoBehaviour
public void OnClickInGameMenuButton()
{
GameManager.Instance.panelManager.OpenInGameMenuPanel();
}
public void InitPlayersName(string playerNameA, string playerNameB)

View File

@ -18,6 +18,11 @@ public class InGameMenuPanelController : PanelController
base.Show();
}
public void OnClickDrawRegisterButton()
{
// GameManager.Instance.lManager.
}
/// <summary>
/// Confirm 버튼 클릭시 호출되는 함수
/// </summary>

View File

@ -308,5 +308,12 @@ public class PanelManager : MonoBehaviour
}));
}
public void OpenInGameMenuPanel()
{
if (_canvas != null)
{
var replayPanelObject = GetPanel("InGameMenu Panel");
replayPanelObject.GetComponent<InGameMenuPanelController>().Show();
}
}
}