I’m not sure if this is the right category but what is the SoundGroup replacement for the new Audio API?
I don’t know a lot about the new Audio API, but I think AudioInteractionGroup
?
1 Like
Hi, the SoundGroup
instance doesn’t have a direct analogue in the Audio API. Instead, any effects that you place under a SoundGroup
have analogous instances that you can string together using Wire
s.
For example, if you had a SoundGroup
containing a ReverbSoundEffect
followed by a CompressorSoundEffect
, you can replace that with an AudioReverb
, an AudioCompressor
, and three Wire
s, like so:
Before
Sound -> ReverbSoundEffect -> CompressorSoundEffect
After
Wire Wire Wire
| | |
V V V
AudioPlayer -> AudioReverb -> AudioCompressor -> AudioDeviceOutput
Let me know if that helps clear things up!
1 Like