Don't trigger release samples if sustain pedal is down
-
When sustain is held the release samples still play when I let of the keys (pdl still down)
Tried looking here but no luck.
Very new to scripting...How would I achieve this?
Thanks in advance!
-
@virtuscapeaudio Add a midi processor with this in the on note off callback
if (Synth.isSustainPedalDown()) Message.ignoreEvent(true);
-
@d-healey Thank you!
Is there a tutorial on the Time Attenuator for Release Trigger script?
Where would i find more info on it?
-
You can see the entire script here. It's c++ but as you'll see it's not that dissimilar from HISE script.
-
@d-healey this would be placed in the sampler with the releases, correct?
-
@virtuscapeaudio Yeah before the release trigger script
-
@d-healey BEFORE , gotcha. Works perfectly and thanks very much!