コード例 #1
0
 public void LoadGame()
 {
     if (PlayerPrefs.GetInt("HighScore") < AddScore.GetScore())
     {
         PlayerPrefs.SetInt("HighScore", AddScore.GetScore());
     }
     AddScore.ResetScore();
     _hud?.gameObject.SetActive(true);
     gameObject.SetActive(false);
     _game?.SetActive(true);
     _endGame?.gameObject.SetActive(false);
 }