Hi all!
So I've been working on a SHMUP-style game for a while now, and recently decided to finally add some sound effects, and I decided to use AudioStreamRandomizer with several slight variations of a sound so as to avoid obnoxiously loud bursts of the same sound when there's tons of bullets created at the same time. It worked well for dozens per second, but when creating a few hundred, I started to notice lagging. Initially I suspected it's due to object creation/deletion, but looking harder at the profiler I noticed it's just the audio:
Is this normal? Am I expecting too much or should I just find a way to reduce the number of times a sample should be played? Or could it be the sign of an issue with the engine?