snex_osc argument amount mismatch
-
@Christoph-Hart How could I fix this, please?
Or again is this a case for using C++ third party node? The end goal is to create a pink noise generator... (if I succeed I might simply add the pink noise option to the existing Hise oscillator)
// This function will be called once per sample float tick(double uptime) { return (float)Math.fmod(uptime, 1.0); } // This function will calculate a chunk of samples void process(OscProcessData& d) { for (auto& s : d.data) { s = tick(d.uptime); d.uptime += d.delta; } }
-
@ustk you might want to check out the
mod_matrix
branch (I'm close to merging it back into develop), it contains the new backend which should not show these errors (HISE also runs natively on Apple Silicon so we don't need to use Rosetta anymore).