Beispiel #1
0
 public void PlayCurrentFret()
 {
     if (this.currentFret == 0)
     {
         if (this.stringController.EmptyStringObj.IsStringSetOn() == false)
         {
             return;
         }
     }
     LCAudioPlayer.PlaySound(this.stringController.Audio, this.currentFret);
 }
Beispiel #2
0
 public void SetCurrentFret(uint newFret)
 {
     this.currentFret = newFret;
     LCAudioPlayer.SetPitch(this.stringController.Audio, this.currentFret);
 }