Added update method docs

This commit is contained in:
Pavle Goloskokovic 2018-01-06 17:33:46 +01:00
parent 712e95b45a
commit 9d577a4ffc

View file

@ -341,7 +341,13 @@ var BaseSound = new Class({
this.currentConfig.delay = 0;
},
/**
* Update method called automatically by sound manager on every game step.
*
* @override
* @protected
* @method Phaser.Sound.BaseSound#update
* @param {number} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
* @param {number} delta - The delta time elapsed since the last frame.
*/
update: NOOP,
/**