Hey there, i know i might be the 100th person asking a question about legato.
I am using a simple Glide script on my multisampler which works fine:
reg midiList = Engine.createMidiList();
const time = Content.addKnob("time", 0, 0);
const amount = Content.addKnob("amount", 130, 0);
time.setMode("Time");
amount.set("min", -12);
amount.set("max", 12);
amount.set("stepSize", 1.0);
amount.set("suffix", "st");
Since all my samples have Loop-points i would prefer that my sample is getting pitched (bend?) like true "synth-legato" - while staying looped rather than retriggering samples on notes.
Any ideas, threads that have covered this already?