Ive just been trying to assign audio unit parameters on a 'per note' basis
As far as I can tell, the implementation, will assign sequential parameters to different channels.
but this is not what i need.
I'll do for 5 poly channel, just to save typing ;o)
e.g.
Assign YAW to parameter 0, what you get is:
Param 0 - YAW (1)
Param 1 - YAW (2)
Param 2 - YAW (3)
Param 3 - YAW (4)
Param 4 - YAW (5)
This assumes a layout that has the channels grouped,
e.g. imagine a VST that has this
0. Resonance (Patch1) - YAW (1)
1. Resonance (Patch2) - YAW (2)
2. Resonance (Patch3) - YAW (3)
3. Resonance (Patch4) - YAW (4)
4. Resonance (Patch5) - YAW (5)
Unfortunately, thats not how my VST works, mine is layed out as
0. Resonance (Patch1) - YAW (1)
1. Cutoff (Patch1) - YAW (2)
2. Delay (Patch1) - YAW (3)
3. Reverb (Patch1) - YAW (4)
4. Resonance (Patch2) - YAW (5)
5. Cutoff (Patch2)
6. Delay (Patch2)
7. Reverb (Patch2)
So as you can see it doesnt work for me....
What I would prefer, is that it is done like Midi CC parameters, where you assigns explicitly the channel to each CC
As I dont see how the current implementation can work for my VST... (and im sure mine is not the only one that has this... I think the current implementation is quite an assumption)
Or am I missing something?
I know to change, it would require more setup (as you need to assign things manually) ... so perhaps you can leave the current implementation as the 'intial' default on creation, but then allow clearing/editing of individual cells...
Thanks
Mark