コード例 #1
0
ファイル: GameController.cs プロジェクト: Empheon/ENJAM2020
 private void NewBeat()
 {
     if (CurrentBeatCombination != null)
     {
         CurrentBeatCombination.BeatAction();
     }
 }
コード例 #2
0
ファイル: GameController.cs プロジェクト: Empheon/ENJAM2020
 private void ActivateCombination(BeatCombination beatCombination, float beatDuration)
 {
     beatCombination.Init(beatDuration);
     CurrentBeatCombination = beatCombination;
     CurrentBeatCombination.BeatAction();
 }