sound icon indicating copy to clipboard operation
sound copied to clipboard

PIXI.sound.stopAll() now working.

Open grokit opened this issue 6 years ago • 3 comments

As per documentation, should stop all sounds. It does not.

grokit avatar Feb 23 '19 08:02 grokit

hi work on my side, can you provide more information ? or close if solved ?

jonlepage avatar Apr 20 '19 18:04 jonlepage

I'm also unable to reproduce.

bigtimebuddy avatar Apr 23 '19 01:04 bigtimebuddy

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

dranitski avatar Jan 21 '20 13:01 dranitski