Exemplo n.º 1
0
    public void Start()
    {
        var currentScore = Score.Current;

        Debug.Log(currentScore.Point);

        score.text    = ScoreFormatter.Format(currentScore.Point);
        playTime.text = PlayTimeFormatter.Format(currentScore.PlayTime);
    }
Exemplo n.º 2
0
 private void UpdateTimeText()
 {
     text.text = PlayTimeFormatter.Format(this.elapsedTime);
 }