コード例 #1
0
ファイル: GameManager.cs プロジェクト: tomur1/Endless-Faller
 //if the initial values don't exists it will crash the application so in that case we want to create some default ones.
 private void CheckIfInitaialValuesExists()
 {
     if (!SaverLoader.InitialValuesExist())
     {
         SaverLoader.SaveStartingValues(new Vector3(0, 5, 0), 2);
     }
 }