Sampler question
-
I have 8 sampler with a file loading mechanic and 8 audioWaveform components - Originally I was using a single folder to load the samples in any of the audioWaveforms, until I noticed that changing the range in one then changed the range in all the others, if the same sample was loaded in more than one or all of the samplers. I suppose each sampler is manipulating the same wav file, so now I have 8 folders all with the same set of samples, with each sampler/audioWaveform loading from their respective folder. This works fine, but before I scale up I should ask, is this really the only method for handling a situation like this? I'm looking at ending up with 8 folders all with the same hundreds, potentially thousands of samples in each
-
@rglides said in Sampler question:
is this really the only method for handling a situation like this?
Add this in
on init
Engine.setAllowDuplicateSamples(false); // Yes false is correct, makes no sense to me either
-
@d-healey oh wow, so simple thanks David!