ScriptNode export completely broken
-
Hi,
I'm trying to compile a HISE ScriptNode network as DLL on Windows, but the generated DSP project fails.
Context:
- HISE develop branch
- Windows
- Visual Studio 2022
- Exporting DSP network as DLL
- The network name is
nebula
Main errors:
scriptnode::core::clock_ramp: too few template argumentsscriptnode::wrap::no_process: too many template argumentsscriptnode::container::chain: use of class template requires template argument listscriptnode::container::split: use of class template requires template argument list
The generated file that fails is:
DspNetworks/Binaries/Source/nebula.hI also found a broken connection in the network related to an
intensity2node:- node type:
control.intensity - ID:
intensity2 - name:
intensity1
Its setup is:
clock_ramp -> intensity2.Intensityintensity2.Value -> lfo_mix
In the XML I found this suspicious part:
<Connection NodeId="dry_wet1" ParameterId="1"/>I deleted the
intensity2node, removed related connections, saved the network again, deletedDspNetworks/Binaries, and recompiled, but the problem still remains.Question:
Could this be caused by a stale / orphaned connection in the network XML, or by an incompatibility withcontrol.intensity+clock_rampwhen compiling as DLL?What would be the correct way to fully clean / regenerate the ScriptNode network so the autogenerated
nebula.his rebuilt from scratch?Thanks.