Issues with Presets Using CurveEQ in Effect Slots
-
When I save a preset with a single instance of CurveEQ in an effect slot, everything works fine. However, sometimes the EQ graph doesn't restore correctly, even though the preset appears to have saved the EQ settings. To restore it properly, I have to load the preset two times.
But when I save a preset with two (or more) CurveEQs in the effect slots—it crashes immediately when I try to load it.
Any ideas what could be causing this?
- I have 6 samplers, with 6 effect slots each one. Could the preset be trying to load both EQs too quickly?
-
@bendurso I think the crash is related to dynamically loading the content data of the floating tile. If I remove the content data loading, it no longer crashes:
local cdata = { "ProcessorId": FX.getId(), "Index": -1, "FollowWorkspace": false }; filter.setContentData(cdata); filter.set("ContentType", "DraggableFilterPanel");
How could I fix it? If a send it to a separate function with a timer, it stills crashes.
-
@bendurso Dont mean to crowd you're post but im just curious...What does "FollowWorkspace" even do?
-
@Chazrox Mm no idea hehe.
I just enabled deferControlCallback on the DraggableFilterPanel floating tiles, and it seems to have fixed the crashes.
I still need to click the preset twice for the filters to load correctly, but that might be an issue in my script—since I can’t reproduce it in a new project.
Anyone knows what "deferControlCallback" does?
-
@bendurso said in Issues with Presets Using CurveEQ in Effect Slots:
Anyone knows what "deferControlCallback" does?
That was only added a few weeks ago and is something to do with the plugin parameter system.
- rewrote plugin parameter system to use unified base class for all a… · christophhart/HISE@a92a701
The open source framework for sample based instruments - - rewrote plugin parameter system to use unified base class for all a… · christophhart/HISE@a92a701
GitHub (github.com)
-
@d-healey said in Issues with Presets Using CurveEQ in Effect Slots:
Oh, thanks. So it was just a placebo effect. I kept testing, and it started crashing again
-