We're using SynthOne "skinless" in our app, and I'm wondering how I can stop() processing when not in use. I've tried synth.internalAU?.stop() (which seems like it should be AKAudioUnit.stop()), but nothing changes. Is there a way to disable processing in the underlying AudioUnit?
We're using SynthOne "skinless" in our app, and I'm wondering how I can
stop()
processing when not in use. I've triedsynth.internalAU?.stop()
(which seems like it should beAKAudioUnit.stop()
), but nothing changes. Is there a way to disable processing in the underlying AudioUnit?