@d-healey Ok, good to know! Thanks for looking into this!
Posts
-
RE: Wrong IR in compiled version
-
RE: Wrong IR in compiled version
@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
-
RE: Wrong IR in compiled version
@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
-
RE: Wrong IR in compiled version
@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
-
RE: Wrong IR in compiled version
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"
-
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?
-
Load preset bank on init
The presetbrowser has, (initially), three columns: Bank, Category, Preset
I would like only to show the Category and Preset columns, and that I can do by changing the values for the preset browser.
When I start the instrument however, the browser appears blank, even if there are 1 Bank, 1 category and several presets, since the Bank hasn't been selected. Is there a way to select a certain bank on init so that the Categories and Presets belonging to that bank are visible? -
RE: Opens on Mac, not PC
@aaronventure Suddenly, everything worked. No idea of what was wrong, must have missed some files when copying
-
RE: Opens on Mac, not PC
@aaronventure I'm using the develop branch, strange! I've compiled it from source on both machines. Hmmm....
-
Opens on Mac, not PC
I have a project that opens on a Mac, but when I copy it to a PC, I get a "Error loading script interface". I have the same Hise version on both computers, (HISE 4.1), and I also have a similar project that works fine on both machines, Any ideas?
-
RE: Smoother curve
@Sampletekk said in Smoother curve:
Btw, how to you get a reference to the table in a Velocity Modulator?
Anyone?
-
RE: Smoother curve
Btw, how to you get a reference to the table in a Velocity Modulator?
-
RE: Smoother curve
@d-healey Thanks for the example, but I get an error:
-
RE: Smoother curve
@Christoph-Hart Simple as that! Thanks! Anyway that you could control that with a knob on a GUI?
-
Smoother curve
In HISE, it looks lik this:
Is it possible to make it work more like this?
-
RE: Deleting a preset
@d-healey said in Deleting a preset:
currentPresetFile.deleteFileOrDirectory();
Thanks! That worked!