Beispiel #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);
    }
Beispiel #2
0
 private void UpdateTimeText()
 {
     text.text = PlayTimeFormatter.Format(this.elapsedTime);
 }