I am starting 9 sound effects (EventInstances) in one frame.
This is causing FMOD to stop all sounds currently playing.
Why does this happen and how to prevent it?
Here’s a video of what’s happening. When the explosions start, the background music is gone.
for (int i = 1; i < 10; i++) {
sound->playSFX(SFX_EXPLOSION);
}