示例#1
0
        void CopySettingsToNative()
        {
            if (!HasNativeNote() || !HasNativeSequencer())
            {
                return;
            }

            Native.ChangeNoteValues(parent.Reference(), reference, note, start, end, velocity);
        }
示例#2
0
        void CopySettingsToNative()
        {
            if (!HasNativeNote() || !HasNativeSequencer())
            {
                return;
            }

            Native.ChangeNoteEnd(parent.Reference(), reference, end);
            Native.ChangeNoteStart(parent.Reference(), reference, start);
            Native.ChangeNoteKey(parent.Reference(), reference, note);
            Native.ChangeNoteVelocity(reference, velocity);
        }