@Gab I got the same issue with HISE 4.0.0 because my faust version was old and so updated to the latest one and then build the HISE again and after that compile all dll again. After that it started working for me.
Best posts made by Onik Sisodiya
-
RE: Faust not able to play Fx (Win 11, Hise 4.0.0, Faust 2.74.6)
-
Analyzer Look and Feel through FloatingTile AudioAnalyzer
Hello everyone, is there anyway to apply LAF on analyzer, As it looks like even by using the inbuilt LAF analyzer function in HISE doesn't make any changes in the look. I would really appreciate if someone can help me.
-
How to Change the Preset Browser Buttons like - Add, Rename, Delete to some image or maybe custom look and feel
Hello Everyone,
How can I change the Buttons in Preset Browser like Add, Rename, Delete to an icon/ custom LAF, or a + sign?
Latest posts made by Onik Sisodiya
-
RE: How to make matrixpeakmeter flipped or inverted
@Onik-Sisodiya Without using the laf
-
How to make matrixpeakmeter flipped or inverted
Is there any way to make the matrixpeakmeter flipped or like from left to right
to right to left movement? -
RE: Plugin build on Sequoia
@Lindon I tried reinstalling HISE again but it still gives me the error with cycle dependencies when compiling a VST, I'm on the official release version of Mac OS Sequoia and still getting the same issue.
-
RE: Plugin build on Sequoia
@parabuh Hello I was on beta before and faced some issue with product export, even after updating to its release version the issue is still there. I hope christopher can help us with that.
-
Issues exporting VST plugin on Mac OS Sequoia Beta
Hello guys, I updated my macbook to MacOS sequoia and. after that when I export any instrument plugin it gives me error " error: Cycle inside a single target; building could produce unreliable results.
"I have tried rebuilding HISE but the issue is still there I feel like its should be something with dependencies and I Cannot downgrade to a lower version of Xcode. The only option that I think for me is to downgrade my OS but its a long process in Mac. If someone can help me here, I would really appreciate it
-
RE: Help with Broadcaster to make componets visible and enabled
@Onik-Sisodiya Just got it figured out!! Thanks again
-
RE: How to add a Pitch LFO for a fx plugin
@Lindon Thanks, I will try to go through that, is there any example for pitch LFO that I can refer to that would be really helpful. I've worked with scriptnode but never made one.
-
RE: Help with Broadcaster to make componets visible and enabled
@Onik-Sisodiya Thanks @ulrik for the snippet. I have the similar callback for the functionality but however when switching the preset it hides the knb even when the button is active. But I gave a try with a broadcaster and attached a knob and a button and it looks like it works perfectly. I'm afraid I don't have to use a seperate broadcaster for pair of button annd a knob.
// Broadcaster definition
const var btnknb = Engine.createBroadcaster({
"id": "btnknb",
"args": ["component", "value"],
"tags": []
});// attach to event Type
btnknb.attachToComponentValue(["SendAmountOnOff3"], "");// attach first listener
btnknb.addComponentPropertyListener(["AmountWheel3"], ["visible", "enabled"], "dsas", function(index, component, value){
return value;
});Like this, If there's anyway to make it maintainable and with less code would be really helpful.
-
How to add a Pitch LFO for a fx plugin
Any ideas I'm working on an FX plugin, where I cannot use samplers from which I could add pitch wheel modulator and connect the LFO. However I'm not sure how to add a Pitch LFO that should work even after compilation. Any help will be appreciated. Thanks
-
Help with Broadcaster to make componets visible and enabled
I have 2 arrays one with btns and another one with knobs
Btns = [btn1, btn2, btn3]
Knbs = [knb1, knb2, knb3]I want to hide the knb according to the btn's value, If btn1 is on or has a. value of 1 then the knb1 should be visible and enabled. I tried this without using a broadcaster but with a callback function using the knb.set("visible", true); But the thing with this is that when I switch the preset it hides the knb even when the button is active. I think using a broadcaster can fix it as by switching presets it will update those knbs and btns in the backend.
I would really appreciate if someone can help me with this