Unsolved Monophonic Glide Script not working properly
-
So I’m on the latest dev version commit and I tried out the New monophonic glide script from the snippet browser…it’s working perfectly inside of HISE…but in my compiled plugin the notes hang whenever you play a note…I tried it as a midi processor script on my sampler so that I could activate it on and off with a button per preset that needed it…I also tried it the same way as a global midi processor script…in both instances the notes keep hanging in the compiled plugin with zero issues inside of HISE…does it need to be implemented in a namespace or Oninit to work properly? Or is there something else going on with note on/off cause that’s what it seems like…
-
-
@johnmike Try adding a uniformVoiceHandler. It has helped me with some glide issues in the past. Set it to a container down the line from the glide script. It won't help with SynthGroups, though.
-
@CyberGen so just drop this
Synth.setUseUniformVoiceHandler(String containerId, bool shouldUseUniformVoiceHandling)
in Onint and call the container my samplers are in? -
@johnmike yes.