We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setUsePreallocatedLength() on the UI sliderPack that is connected to the node doesn't solve the issue:
setUsePreallocatedLength()
https://forum.hise.audio/topic/11411/externaldata-sliderpack-seems-to-be-limited-to-128
const var spd = Engine.createAndRegisterSliderPackData(0); spd.setUsePreallocatedLength(512); spd.setNumSliders(512); spd.setRange(0.0, 1.0, 0.0); const var t = Engine.createTimerObject(); t.setTimerCallback(function() { spd.setValue(307, 0.123); Console.print(spd.getValue(307)); // 1.0 Console.print(spd.getNumSliders()); // 32 }); t.startTimer(1000);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
setUsePreallocatedLength()
on the UI sliderPack that is connected to the node doesn't solve the issue:https://forum.hise.audio/topic/11411/externaldata-sliderpack-seems-to-be-limited-to-128
The text was updated successfully, but these errors were encountered: