mirror of
https://github.com/photonstorm/phaser
synced 2025-03-03 14:57:12 +00:00
Updated remove method docs
This commit is contained in:
parent
d8eb945f84
commit
39a5c2907f
1 changed files with 4 additions and 2 deletions
|
@ -177,9 +177,11 @@ var BaseSoundManager = new Class({
|
||||||
sound.play(spriteName, config);
|
sound.play(spriteName, config);
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
* Removes a sound from the sound manager.
|
||||||
|
* The removed sound is destroyed before removal.
|
||||||
*
|
*
|
||||||
*
|
* @method Phaser.Sound.BaseSoundManager#remove
|
||||||
* @param {ISound} sound
|
* @param {ISound} sound - The sound object to remove.
|
||||||
* @returns {boolean} True if the sound was removed successfully, otherwise false.
|
* @returns {boolean} True if the sound was removed successfully, otherwise false.
|
||||||
*/
|
*/
|
||||||
remove: function (sound) {
|
remove: function (sound) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue