Thanks for your example Christoph!
I´ll dive into it tomorrow with this:
https://de.wikipedia.org/wiki/Datei:LARC-V_(Iceland_-_Jokulsarlon_5).jpg
: )
Thanks for your example Christoph!
I´ll dive into it tomorrow with this:
https://de.wikipedia.org/wiki/Datei:LARC-V_(Iceland_-_Jokulsarlon_5).jpg
: )
Hi, I am trying to add effects to my childsynths in onInit-script.
// works on the master
Synth.addEffect('Limiter', 'Limiter1', -1);
// fails on the child
const var Looper1 = Synth.getChildSynth('Looper1'); // Returns childsynth NOT synth!
Looper1.addEffect('Limiter', 'Limiter1', -1);
How can I realise this?
Thanks for your example Christoph!
I´ll dive into it tomorrow with this:
https://de.wikipedia.org/wiki/Datei:LARC-V_(Iceland_-_Jokulsarlon_5).jpg
: )
Hi, it looks like only the basic parameterIds like LoopEnabled is mappable for an Audio Loop Player.
I´ve tried:
var looper = Synth.getChildSynth('Noise_Loop_00'); looper.asSampler().setSoundPropertyForAllSamples(Sampler.SampleStart, 4000);
How can I add controls for LoopStart and LoopEnd in the interface?