mirror of
https://github.com/photonstorm/phaser
synced 2025-02-16 22:18:29 +00:00
Implemented mute property getter for HTML5AudioSoundManager class
This commit is contained in:
parent
86cccd53ee
commit
8c5610416a
1 changed files with 1 additions and 0 deletions
|
@ -35,6 +35,7 @@ var HTML5AudioSoundManager = new Class({
|
||||||
});
|
});
|
||||||
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
|
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
|
||||||
get: function () {
|
get: function () {
|
||||||
|
return this._mute;
|
||||||
},
|
},
|
||||||
set: function (value) {
|
set: function (value) {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue