예제 #1
0
 /// <summary>
 /// オートプレイ時の処理
 /// </summary>
 /// <param name="time">楽曲の経過時間(秒)。</param>
 void PlayAuto(float time)
 {
     if (noteManager.GetAuto(time) != -1)
     {
         Note [] allNotes = notes.GetComponentsInChildren <Note> ();
         Determine(NoteResult.Excellent, allNotes [0]);
     }
 }