Randomise reverse?
-
I have the built in MIDI Arp script hooked up to an Audio Loop Player, and I'd like to have a control for randomisation of the playback direction for the sample for every note, somewhat like the Random Start control. Is there a way to do this? There's a Reverse button, so perhaps there's a way to automate randomisation of that with a MIDI script or something similar?
-
@paper_lung
You could use the Math.random() function as a basis. And then you could, for example, play backwards for values below 0.5 and forwards for values above 0.5. But that's just an idea. I'm not sitting in front of the computer right now.