mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Defining mute property for HTML5AudioSoundManager class
This commit is contained in:
parent
d3caa815d1
commit
86cccd53ee
1 changed files with 6 additions and 0 deletions
|
@ -33,4 +33,10 @@ var HTML5AudioSoundManager = new Class({
|
|||
this.onBlurPausedSounds = null;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
|
||||
get: function () {
|
||||
},
|
||||
set: function (value) {
|
||||
}
|
||||
});
|
||||
module.exports = HTML5AudioSoundManager;
|
||||
|
|
Loading…
Reference in a new issue