Exemple #1
0
 /// <summary>
 /// hi-hat
 /// </summary>
 public void Hat()
 {
     if (OnLoadCompleteListener.Loaded)
     {
         Percussion[2].Play(PercIds[2], 1f, 1f, 1, 0, 1);
         PlayingPercussion.Push(2);
     }
     else
     {
         SynthNotLoadedWarning("hat");
     }
 }
Exemple #2
0
 /// <summary>
 /// snare
 /// </summary>
 public void Snare()
 {
     if (OnLoadCompleteListener.Loaded)
     {
         Percussion[1].Play(PercIds[1], 1f, 1f, 1, 0, 1);
         PlayingPercussion.Push(1);
     }
     else
     {
         SynthNotLoadedWarning("snare");
     }
 }
Exemple #3
0
 /// <summary>
 /// kick
 /// </summary>
 public void Kick()
 {
     if (OnLoadCompleteListener.Loaded)
     {
         Percussion[0].Play(PercIds[0], 1f, 1f, 1, 0, 1);
         PlayingPercussion.Push(0);
     }
     else
     {
         SynthNotLoadedWarning("kick");
     }
 }