sound
sound copied to clipboard
PIXI.sound.stopAll() now working.
As per documentation, should stop all sounds. It does not.
hi work on my side, can you provide more information ? or close if solved ?
I'm also unable to reproduce.
It may not work if you start your sounds directly like
let music = PIXIsound.Sound.from({source});
music.play();
if that is your case, try this approach instead
let music = PIXIsound.Sound.from({source});
PIXIsound.add('music', music);
PIXIsound.play('music');
I faced it when was creating my sounds manually from base64 strings, not via resource-loader