コード例 #1
0
ファイル: Replay.cs プロジェクト: CanPayU/SuperSwungBall
 // FOR EXECUTE
 public void nextRound()
 {
     this.actualId++;
     this.actualRound = this.rounds[actualId - 1];
     Debug.Log(this.rounds.Count + " - " + this.actualId + " / " + this.actualRound.id);
 }
コード例 #2
0
ファイル: Replay.cs プロジェクト: CanPayU/SuperSwungBall
 /// <summary>
 /// Reset les valeurs temporelle
 /// </summary>
 public void resetActualValue()
 {
     this.actualId = 0;
     this.actualRound = null;
 }
コード例 #3
0
ファイル: Replay.cs プロジェクト: CanPayU/SuperSwungBall
 public void newRound()
 {
     this.actualId++;
     this.actualRound = new Round(this.actualId, players);
     this.rounds.Add(actualRound);
 }