mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +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;
|
this.onBlurPausedSounds = null;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
|
||||||
|
get: function () {
|
||||||
|
},
|
||||||
|
set: function (value) {
|
||||||
|
}
|
||||||
|
});
|
||||||
module.exports = HTML5AudioSoundManager;
|
module.exports = HTML5AudioSoundManager;
|
||||||
|
|
Loading…
Reference in a new issue