Beispiel #1
0
    void Start()
    {
        Screen.orientation = ScreenOrientation.Landscape;
        game1.SetActive(false);
        blankScreen.SetActive(false);

        microgames = MicroGames.START;
    }
Beispiel #2
0
    //===========================================================
    //              Coroutines
    //===========================================================

    IEnumerator waitingStart(float sec)
    {
        if (blankRoutine == true)
        {
            blankRoutine = false;
            yield return(new WaitForSeconds(sec));

            microgames = MicroGames.GAME;
        }
    }