Added new pages in the menu that will be used for highscorews and game info/controls (both are currently empty)
This commit is contained in:
@@ -9,8 +9,12 @@ public class MainMenu : MonoBehaviour
|
||||
|
||||
public GameObject menuFirstButton;
|
||||
public GameObject skinsFirstButton;
|
||||
public GameObject highscoreFirstButton;
|
||||
public GameObject gameinfoFirstButton;
|
||||
public GameObject optionsFirstButton;
|
||||
public GameObject skinsBackButton;
|
||||
public GameObject highscoreBackButton;
|
||||
public GameObject gameinfoBackButton;
|
||||
public GameObject optionsBackButton;
|
||||
|
||||
void Start()
|
||||
@@ -36,6 +40,30 @@ public class MainMenu : MonoBehaviour
|
||||
EventSystem.current.SetSelectedGameObject(skinsBackButton);
|
||||
}
|
||||
|
||||
public void Highscores()
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
EventSystem.current.SetSelectedGameObject(highscoreFirstButton);
|
||||
}
|
||||
|
||||
public void BackHighscores()
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
EventSystem.current.SetSelectedGameObject(highscoreBackButton);
|
||||
}
|
||||
|
||||
public void GameInfo()
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
EventSystem.current.SetSelectedGameObject(gameinfoFirstButton);
|
||||
}
|
||||
|
||||
public void BackGameInfo()
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
EventSystem.current.SetSelectedGameObject(gameinfoBackButton);
|
||||
}
|
||||
|
||||
public void Options()
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
|
||||
Reference in New Issue
Block a user