Help with processBlock in scriptFX
-
I genuinely can't figure out how to use the processBlock to implement a custom DSP algorithm, or any signal change for that matter. In the documentation it just says the processBlock takes variable data. Can someone please elaborate, and help me understand why I can't get the processBlock to to anything. (Even print a debug message to the console)
-
@Gnosis33 This is a highly deprecated way of doing things as it precedes scriptnode and everything that came along with it, so I wouldn't recommend trying to go there unless you really need to for backwards compatibility.
Use scriptnode and external C++ / RNBO / Faust / SNEX / whatever instead.
-
@Christoph-Hart Thank you! I'm pretty sure I understand! I'll look into how to use those.