We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f3a7e8 commit bacce96Copy full SHA for bacce96
1 file changed
v3/src/sound/BaseSoundManager.js
@@ -109,11 +109,12 @@ var BaseSoundManager = new Class({
109
*/
110
add: NOOP,
111
/**
112
- * [description]
+ * Adds a new audio sprite sound into the sound manager.
113
*
114
- * @param {string} key
115
- * @param {ISoundConfig} config
116
- * @returns {IAudioSpriteSound}
+ * @method Phaser.Sound.BaseSoundManager#addAudioSprite
+ * @param {string} key - Asset key for the sound.
+ * @param {ISoundConfig} [config] - An optional config object containing default sound settings.
117
+ * @returns {IAudioSpriteSound} The new audio sprite sound instance.
118
119
addAudioSprite: function (key, config) {
120
var sound = this.add(key, config);
0 commit comments