Beispiel #1
0
    private void SetupIntroState()
    {
        if (scroller)
        {
            scroller.Reset();
            scroller.scrollingEnabled = alwaysScrolls;
            scroller.GetComponent <CoinManagement>().StartNewLevel();
        }
        awardTextCanvas?.SetActive(false);

        gameState = GameState.TakingQuestions;
        questionManager.EnableQuestions(true);
        questionManager.StartRounds(numQuestions);
        questionManager.Reset();
        man.initialState = true;

        gameState = GameState.ShowSplashScreen;
        timeBeforeCreatingNextQuestion = Time.time + 0.1f;
    }