Exemplo n.º 1
0
    public void SetGameMode(string mode)
    {
        gameMode = mode;
        SetCircleIntervalD();
        gameModePanel.SetActive(false);
        gameModeText.text = mode;

        soundCotroller.touchBtnSoundPlay();

        if (mode == "free")
        {
            footerPanel.SetActive(true);
        }
        gameManager.GameReset();
    }
Exemplo n.º 2
0
 public void ClickStartBtn()
 {
     gameManager.DoGameStartCoroutine();
     soundController.touchBtnSoundPlay();
 }