예제 #1
0
 private void OnEnable()
 {
     _finalScoreField.text = $"Congratulations!\nYou scored {_finalScore.Value} points!";
     if (_highScoreManager.IsNewScoreHighScore(_finalScore.Value))
     {
         _newHighScore.SetActive(true);
     }
     else
     {
         _notHighScore.SetActive(true);
     }
 }