public void PlayIdx(int idx) // test { Chord c = MetronomeManager.GetCurrentChord(); ChordTones ct = fullChordArray[(int)c]; if (ct != null) { ct.Play(idx); } }
public void PlayRandom() { //lowerMusicVol(); //turnOnReverb(); Chord c = MetronomeManager.GetCurrentChord(); ChordTones ct = fullChordArray[(int)c]; if (ct != null) { ct.PlayRandom(); } }