EQ changes saved in DAW
-
I am struggling getting any changes made to the EQ in DAW to save and then retain when the project is reopened. I'm hoping that somebody here can assist me?
At first I couldn't get the EQ to save as part of the user preset at all, but then I found a thread on here, called the Engine.addModuleStateToUserPreset() as suggested and now any EQ settings I make in HISE are saved as part of the user presets.
What I can't get it to do now is to save any changes made by the user when the plugin is loaded up in DAW. All other changes to the rest of the sliders are saved in the project but ss it is a floating tile, I can't enable the save in preset option like I can with the other sliders.
Is there another function I need to add to the script or is there another way to get this to work?
Thanks in advance
-
Engine.addModuleStateToUserPreset("EQ");
-
If they are saved in the user preset, they should be restored with the daw session too, it's the same data.
-
@Christoph-Hart that's really odd as it didn't save the changes if made in FL.
It saved the initial settings I'd tweaked in HISE so when I loaded that preset up in FL the eq was setup the same. But then when I added another couple of bands and changed the values then it didn't save when I reopened the project.
I have no other code affecting the EQ so it is a bit strange.
I'll try again later and see if it does the same
-
@DabDab yes that the code I used to get it working in he first place but it didn't translate across when I made firther changes in daw.
@Christoph-Hart said that it should though so I'll double check something else isn't stopping it
-
@rzrsharpeprod
Just in case anybody stumbles across this thread in search of a solution to a similar problem I have figured it out.I was calling it using a callback so it actually wasn't working at all.
What I had mistake for a preset loading an EQ was just how I had left the default in HISE when I exported.Once I took it out of the callback and called it on its own it worked fine - both the default/saved in the presets that I made in HISE and any changes in DAW were retained in that project when reloading it. Happy days...