You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The start of sounds will be cut off after an auto resume, short sounds will not be heard at all. Experiencing this in Firefox 49.0.2 but not in Chrome.
<script src="../src/howler.core.js"></script>
<script>
var h = new Howl({
src: ['Move.ogg', 'Move.mp3']
});
h.play();
setTimeout(function () {
console.log('tick');
h.play();
}, 31000);
</script>
Expected: Hear Move.ogg twice at an interval of 31s, actual: hearing only the first one
The text was updated successfully, but these errors were encountered:
The start of sounds will be cut off after an auto resume, short sounds will not be heard at all. Experiencing this in Firefox 49.0.2 but not in Chrome.
Expected: Hear Move.ogg twice at an interval of 31s, actual: hearing only the first one
The text was updated successfully, but these errors were encountered: