Wrong IR in compiled version
-
I have this instrument I'm working on. In Hise, before exporting, it looks like this:
I then export as VST3, and when I open it in a DAW, it looks like this:
Everything is exactly the same, as it should, except for the chosen impulse. Before exporting, the "Bright Plate" is choosen, and in the exported version, it's the "Arena".
The only code I have that has to do with the reverb is:
//Impulse cmbBox const irs = Engine.loadAudioFilesIntoPool(); const cmbIR = Content.getComponent("cmbIR"); //Load choosen IR inline function oncmbIRControl(component, value) { if (value > 0) Reverb.setFile(irs[value -1]); }; //Populate cmbBox Content.getComponent("cmbIR").setControlCallback(oncmbIRControl); cmbIR.set("items", ""); for (x in irs) cmbIR.addItem(x.replace("{PROJECT_FOLDER}").replace(".wav")); What do I do wrong?
-
I can also add, that when I compile the project in Hise, the choosen IR does not change, but stay the same, that is "Bright Plate"
-
@Sampletekk Is your combo box set to save in preset? Have you enabled the option to embed audio files?
-
@d-healey said in Wrong IR in compiled version:
@Sampletekk Is your combo box set to save in preset? Have you enabled the option to embed audio files?
Yes on both
-
@Sampletekk Are you using a default preset?
-
@d-healey said in Wrong IR in compiled version:
@Sampletekk Are you using a default preset?
No, and I've checked on an earlier version, where I didn't have a preset browser, and it was the same problem
-
@Sampletekk Can you send me the project?
-
@d-healey said in Wrong IR in compiled version:
@Sampletekk Can you send me the project?
Sure, I've sent you a link on your patreon page
-
The combo box value is correct. The issue is that the order of the items in your combo box is changing between HISE and the compiled version. I can't remember why this happens but I've seen it reported before.
-
@d-healey Ok, good to know! Thanks for looking into this!