Converts polyphonic aftertouch on the QuNexus into timbre.
For the first time, i can actually tweak the pressure data after making a midi recording - per note!
Awesome news for my jitterbug hands.
Well, here it is.
Thanks Bitwig & friends!
Code: Select all
loadAPI(1);
host.defineController("KMI", "QuNexus", "1.0", "ed1c2a90-cdce-11e3-9c1a-0800200c9a66");
host.defineMidiPorts(1, 0);
function init()
{
QuNexus = host.getMidiInPort(0).createNoteInput("QuNexus - Omni", "??????");
QuNexus.setShouldConsumeEvents(false);
QuNexus.assignPolyphonicAftertouchToExpression(0, NoteExpression.TIMBRE_UP, 5);
}
