Exemplo n.º 1
0
    void Start()
    {
        if (instance == null) instance = this;

        scoreNum = 0;
        maxObjects = 5;
        round = 1;

        txtScore.text = "SCORE: " + scoreNum + "/" + maxObjects;
        txtRound.text = "ROUND" + round;

        setRound(1);
    }
Exemplo n.º 2
0
    void Start()
    {
        if (instance == null)
        {
            instance = this;
        }

        scoreNum   = 0;
        maxObjects = 5;
        round      = 1;

        txtScore.text = "SCORE: " + scoreNum + "/" + maxObjects;
        txtRound.text = "ROUND" + round;

        setRound(1);
    }