mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
added isPaused field to BaseSound class
This commit is contained in:
parent
0eca17520c
commit
7a4939d435
1 changed files with 6 additions and 0 deletions
|
@ -93,6 +93,12 @@ var BaseSound = new Class({
|
|||
* @property {boolean} isPlaying
|
||||
*/
|
||||
this.isPlaying = false;
|
||||
/**
|
||||
* Flag indicating if sound is currently paused.
|
||||
*
|
||||
* @property {boolean} isPaused
|
||||
*/
|
||||
this.isPaused = false;
|
||||
/**
|
||||
* Object containing markers definitions.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue