GameWorldControl.AddScore C# (CSharp) Method

AddScore() public method

public AddScore ( int points ) : void
points int
return void
    public void AddScore(int points)
    {
        score += points;
        scoreLabel.text = "Score: " + score;
    }

Usage Example

Esempio n. 1
0
 //MESSAGES
 //Add to the players score when receiving back an AddToScore message
 void AddToScore(int points)
 {
     gameWorldControlScript.AddScore(points);
 }