Hi,
I’m making a game where every time the character taps on the screen a bullet fires. With the following code, if I tap the screen really fast, it won’t play a new sound unless the current bullet sound has stopped. How do I get around this?
–in the screen tap event listener
local bulletSound = audio.loadStream( “sounds/fire-bullet.wav” );
audio.play(bulletSound);
Thanks!