Example #1
0
    public void SetScoreDisplay()
    {
        if (playerCurrentScore > highScoreValue)
        {
            highScoreValue = playerCurrentScore;
        }

        Lives.text = "Lives: " + gameController.GetLives().ToString();

        HighScore.text = "Best: " + highScoreValue.ToString();

        CurrentScore.text = "Score: " + playerCurrentScore;
    }