diff --git a/src/sound/html5/HTML5AudioSoundManager.js b/src/sound/html5/HTML5AudioSoundManager.js index eb837de32..7aa5d5446 100644 --- a/src/sound/html5/HTML5AudioSoundManager.js +++ b/src/sound/html5/HTML5AudioSoundManager.js @@ -102,6 +102,7 @@ Object.defineProperty(HTML5AudioSoundManager.prototype, 'volume', { this.forEachActiveSound(function (sound) { sound.setVolume(); }); + this.events.dispatch(new SoundValueEvent(this, 'SOUND_VOLUME', value)); } }); module.exports = HTML5AudioSoundManager;