Dispatching event when setting HTML5AudioSoundManager volume property

This commit is contained in:
Pavle Goloskokovic 2018-01-12 17:26:16 +01:00
parent 30027af69e
commit 9bb138f40d

View file

@ -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;