DO-71 [Feat] 메뉴 표시까지만
This commit is contained in:
parent
798c0499e4
commit
32cfcb02a6
@ -53,7 +53,7 @@ public class GameUIController : MonoBehaviour
|
|||||||
|
|
||||||
public void OnClickInGameMenuButton()
|
public void OnClickInGameMenuButton()
|
||||||
{
|
{
|
||||||
|
GameManager.Instance.panelManager.OpenInGameMenuPanel();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void InitPlayersName(string playerNameA, string playerNameB)
|
public void InitPlayersName(string playerNameA, string playerNameB)
|
||||||
|
@ -17,6 +17,11 @@ public class InGameMenuPanelController : PanelController
|
|||||||
this.onInGameMenuButtonClick = onInGameMenuButtonClick;
|
this.onInGameMenuButtonClick = onInGameMenuButtonClick;
|
||||||
base.Show();
|
base.Show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void OnClickDrawRegisterButton()
|
||||||
|
{
|
||||||
|
// GameManager.Instance.lManager.
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Confirm 버튼 클릭시 호출되는 함수
|
/// Confirm 버튼 클릭시 호출되는 함수
|
||||||
|
@ -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