mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Added update method docs
This commit is contained in:
parent
712e95b45a
commit
9d577a4ffc
1 changed files with 6 additions and 0 deletions
|
@ -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,
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue