Help getting EQ + Draggable Filter Panel to Save Values
-
On my exported plugin, when I save a project and re-open the project (studio one, Fl studio), my values for the Parametriq EQ are not saving. I have a draggable filter panel that is linked to my parametriq EQ. The filter panel goes flat and the EQ is not saving my set values when the project is re-opened. I am not using presets in the plugin. How do I get the EQ to save it's values once a project has been saved and re-opened? All my other controls save fine.
Any help would be greatly appreciated. This is the only thing preventing me from completing my project.
-
@Christoph-Hart just wondering if there is a quick fix for this. I have searched the forum and couldn't find an answer or issue that addresses this...
-
Got a simple snippet that demonstrates the issue?
-
@Mwins Would this help
const var nameofyourEQ = Synth.getEffect("nameofyourEQ"); Engine.addModuleStateToUserPreset("nameofyourEQ");
-
This post is deleted! -
Are the Floating Tiles set to SaveInPreset? If you add the line @DanH mentioned, it should work.
-
There‘s a setting somewhere that enables you to store an entire modules state into a preset, which I added exactly for this use case.
I‘ll take a look when I‘m back at the computer.
Edit: lol didn‘t read @DanH's answer which is spot on ;)
-
@Christoph-Hart Yes that solved it. I had it in the control callback for the floating tile. Once I took it out of the callback, it works! Thanks for the timely response.
-
@DanH Big thanks my friend... saved the day! That worked.