posted this on the fb group as well but curious as to what answers I'd get here:
how do you deal with scheduling/sequencing multi-parameter note events? say something like pitch, amp, dur, panning for each note? do you use one list with n-elt chunks dealing with n parameters? n different arrays/lists? [text sequence]? structs? manage to compile xeq and make sense of it? How do you deal with unit changes (switching from 16ths to say 8th note qunituplets)? In Pd, I've never really felt comfy with working with these sorts of things
in the past, i've used an absttraction I made based off the list sequencing example except with multiple parameters (found here ) and it gets feeling a little unwieldly/unstructured with a larger number of parameters or longer sequences and it's at those times I start wishing for multidim arrays or nested structures like lists in lists or jsony sorts of things (which I suppose text/structs kinda do), something make dealing with the whole thing a little bit easier. Lately I've also been experimenting with embedding info in just one number,.. so like 3.54 where 3 is the pitch from an array, 0.5 means it's twice as fast, 0.04 means it's panned left (making 0.06 panning right, 0.05 center pan). also a bit unwiedly and kinda confusing