コード例 #1
0
    public void PlayIdx(int idx) // test
    {
        Chord      c  = MetronomeManager.GetCurrentChord();
        ChordTones ct = fullChordArray[(int)c];

        if (ct != null)
        {
            ct.Play(idx);
        }
    }
コード例 #2
0
    public void PlayRandom()
    {
        //lowerMusicVol();
        //turnOnReverb();
        Chord      c  = MetronomeManager.GetCurrentChord();
        ChordTones ct = fullChordArray[(int)c];

        if (ct != null)
        {
            ct.PlayRandom();
        }
    }