Hi jules,
Any plan on porting the VST3 API getMidiControllerAssignment() to audio processor class in VST3 wrapper cpp?
So that we can make the midi cc to parameter mapping easily..
Or do you have any suggestion that we could elegantly override and implement this in our audioprocesser subclass for the moment?
Thanks.
The current codes in vst3 wrapper cpp
//==============================================================================
tresult PLUGIN_API getMidiControllerAssignment (Steinberg::int32 busIndex, Steinberg::int16,
Vst::CtrlNumber midiControllerNumber,
Vst::ParamID& id) override
{
//TODO
id = 0;
return kNotImplemented;
}
