Error when compiling project with RNBO Node
-
hey I have a complex project where I mixed external c++ code with RNBO generated code. I can test everything in HISE however when I try to export the project as VST3 I get this error:
/DspNetworks/ThirdParty/src/rnbo/src/3rdparty/MPark_variant/variant.hpp:1171:7: no matching function for call to 'get_alt'
Has someone seen this one before? I have used the RNBO Node inside another Scriptnode network and then compiled everything to use in a hardcoded FX.
-
@oskarsh I don't believe it is possible to compile RNBO effects inside Scriptnode (though I could be mistaken, I never actually tried). Is there any particular reason for having the RNBO Node inside Scriptnode? I find you can accomplish just about anything inside RNBO itself then use it as a hardcoded effect inside HISE.
This may be useful https://forum.hise.audio/topic/8537/rnbo-node-for-scriptnode/4?_=1709335256016
-
@HISEnberg I see that explains it. I had some hope because it worked so well in HISE.
I used the RNBO Node in Scriptnode since I built a compressor and use the 3 out in RNBO to communicate the compression amount that I then pick up in Scriptnode to show the compression using a peak node. But there are other ways around definitely.
-
@oskarsh if you load RNBO code via the C++ template you can use RNBO effects inside scriptnode. I had no issues doing that for release builds.
Edit: did the dll compilation work just fine and it only gave you an error on vst export?
-
That looks like a compilation error in RNBO. You need to ask in their forum.
-
@Christoph-Hart thanks I got another error which is connected to how I define parameters in my gen code box. Will check.