mirror of
https://github.com/photonstorm/phaser
synced 2025-03-01 13:57:26 +00:00
Added removeByKey method that calls BaseSoundManager removeByKey method
This commit is contained in:
parent
2b0765f46a
commit
50fefeef2e
1 changed files with 3 additions and 0 deletions
|
@ -34,6 +34,9 @@ var NoAudioSoundManager = new Class({
|
|||
},
|
||||
remove: function (sound) {
|
||||
return BaseSoundManager.prototype.remove.call(this, sound);
|
||||
},
|
||||
removeByKey: function (key) {
|
||||
return BaseSoundManager.prototype.removeByKey.call(this, key);
|
||||
}
|
||||
});
|
||||
module.exports = NoAudioSoundManager;
|
||||
|
|
Loading…
Add table
Reference in a new issue