Fixed admin panel tabs not switching interfaces due to misnamed functions.
This commit is contained in:
parent
05cf67b1e2
commit
6c9a1d5608
@ -16,13 +16,13 @@ public class HostPanelInterface : UdonSharpBehaviour
|
|||||||
[SerializeField] private PlayerPodium[] _PlayerPodiums;
|
[SerializeField] private PlayerPodium[] _PlayerPodiums;
|
||||||
|
|
||||||
|
|
||||||
public void ShowGameConfigView()
|
public void ShowPlayersAdminView()
|
||||||
{
|
{
|
||||||
_GameConfigPanel.SetActive(true);
|
_GameConfigPanel.SetActive(true);
|
||||||
_CamerasPanel.SetActive(false);
|
_CamerasPanel.SetActive(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ShowCamerasView()
|
public void ShowCamerasAdminView()
|
||||||
{
|
{
|
||||||
_GameConfigPanel.SetActive(false);
|
_GameConfigPanel.SetActive(false);
|
||||||
_CamerasPanel.SetActive(true);
|
_CamerasPanel.SetActive(true);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user