Faust node can be selected in hardcoded fx
-
Just a little question about an unexpected behavior:
If i setup a new dsp network (let's say it's called "faust_test") and i add a core.faust node called "t_faust" and i compile the DSP networks, i expected, that i only can choose the compiled "faust_test" network in a hardcoded master fx afterwards. But surprisingly, i can also choose the faust node "t_faust" itself.
Would it also be possible then, only to compile the core.faust node "t_faust" for example? -
@toxonic Yes that's correct. Currently it will scan all networks that have faust nodes and only create C++ versions of the referenced faust files. The faust files will then be compiled into a node itself and are referenced in the compiled network but also made available as any other C++ node.
I'm not sure if what you're asking for is a better solution (compiling all faust files regardless whether they are referenced or not) - usually it's common practice to only use the resources that are used and there might be some dummy patches and / or examples which you don't want to compile each time.