// Use this for initialization void Start() { GetComponent <TextMesh> ().text = "GameOver\nScore:" + ScoreCounter.CurrentScore().ToString(); }
// Update is called once per frame void Update() { scoreText.text = "Score:" + ScoreCounter.CurrentScore().ToString(); }