Skip to content

Instantly share code, notes, and snippets.

@Curookie
Created December 19, 2017 07:56
Show Gist options
  • Save Curookie/a24bf778adb1df7017f5a12afadb8bc0 to your computer and use it in GitHub Desktop.
Save Curookie/a24bf778adb1df7017f5a12afadb8bc0 to your computer and use it in GitHub Desktop.
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class ScoreManager : MonoBehaviour
{
public static int score; // The player's score.
Text text; // Reference to the Text component.
void Awake ()
{
// Set up the reference.
text = GetComponent <Text> ();
// Reset the score.
score = 0;
}
void Update ()
{
// Set the displayed text to be the word "Score" followed by the score value.
text.text = "Score: " + score;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment