multiple samplers multiples preset browsers
-
I have multiple sample players I want to load different sample maps in each without changing the other sample maps in the other samplers, its possible?
-
@WepaAudio Yes
-
@d-healey but how, I've being trying with your video of changing maps using the preset browser video you made, I've used that example for 1 preset browser and works perfect, but not for all. I duplicate that code in different variations sometimes work wit 2, them the second one get stuck in 1 preset,, di you got any example?
-
@WepaAudio said in multiple samplers multiples preset browsers:
I've used that example for 1 preset browser
You can only have one preset browser - well you can have multiple browser but they all do the same thing.
All a preset does is store/load the state of the controls on the UI that have the SaveInPreset property enabled.
There are various methods for loading sample maps with the preset. A simple one is to have a hidden knob on the UI that is saved in the preset - change the knob's value for each preset.
In your script have an array that has one element for each preset, and within each element put another array containing the names of the sample maps, one per sampler.
In the knob's callback you get the list of sample maps from the array (using the knob's value as the array index). You loop over the list and load the sample maps into each sampler.