Exemple #1
0
    public void OnButtonClick(string ButtonName)
    {
        switch (ButtonName)
        {
        case "AccelarationMode":
            SoundController.Static.PlayClickSound();
            LoadingMenuParent.SetActive(true);
            ControlSelectionParent.SetActive(false);
            TotalCoinsParent.SetActive(false);
            break;

        case "ButtonMode":
            SoundController.Static.PlayClickSound();
            LoadingMenuParent.SetActive(true);
            ControlSelectionParent.SetActive(false);
            TotalCoinsParent.SetActive(false);
            break;

        case "Back":
            SoundController.Static.PlayClickSound();
            ControlSelectionParent.SetActive(false);
            LevelSelectionParent.SetActive(true);
            break;
        }
    }
Exemple #2
0
    public void OnButtonClick(string ButtonName)
    {
        switch (ButtonName)
        {
        case "BACK":
            LevelSelectionParent.SetActive(false);
            PlayerSelectionMenu.SetActive(true);
            SoundController.Static.playSoundFromName("Click");
            break;

        case "Level1":
            levelName = "GamePlay";
            ControlSelection.SetActive(true);
            LevelSelectionParent.SetActive(false);
            MainMenu.currentScreen = MainMenu.MenuScreens.ControlselectionMenu;
            SoundController.Static.playSoundFromName("Click");
            break;

        case "Level2":
            levelName = "cityGameplay";
            ControlSelection.SetActive(true);
            LevelSelectionParent.SetActive(false);
            MainMenu.currentScreen = MainMenu.MenuScreens.ControlselectionMenu;
            SoundController.Static.playSoundFromName("Click");
            break;

        case "Level3":
            SoundController.Static.playSoundFromName("Click");
            levelName = "NightGameplay";
            ControlSelection.SetActive(true);
            LevelSelectionParent.SetActive(false);
            MainMenu.currentScreen = MainMenu.MenuScreens.ControlselectionMenu;
            break;
        }
    }