DO-71 [Feat] 메뉴 표시까지만
This commit is contained in:
parent
798c0499e4
commit
32cfcb02a6
@ -53,7 +53,7 @@ public class GameUIController : MonoBehaviour
|
||||
|
||||
public void OnClickInGameMenuButton()
|
||||
{
|
||||
|
||||
GameManager.Instance.panelManager.OpenInGameMenuPanel();
|
||||
}
|
||||
|
||||
public void InitPlayersName(string playerNameA, string playerNameB)
|
||||
|
@ -18,6 +18,11 @@ public class InGameMenuPanelController : PanelController
|
||||
base.Show();
|
||||
}
|
||||
|
||||
public void OnClickDrawRegisterButton()
|
||||
{
|
||||
// GameManager.Instance.lManager.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Confirm 버튼 클릭시 호출되는 함수
|
||||
/// </summary>
|
||||
|
@ -308,5 +308,12 @@ public class PanelManager : MonoBehaviour
|
||||
}));
|
||||
}
|
||||
|
||||
|
||||
public void OpenInGameMenuPanel()
|
||||
{
|
||||
if (_canvas != null)
|
||||
{
|
||||
var replayPanelObject = GetPanel("InGameMenu Panel");
|
||||
replayPanelObject.GetComponent<InGameMenuPanelController>().Show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user