mirror of
https://github.com/photonstorm/phaser
synced 2024-12-17 08:33:40 +00:00
Removed touchLockedActionQueue from HTML5AudioSound class
This commit is contained in:
parent
913f388535
commit
da56f97580
1 changed files with 0 additions and 15 deletions
|
@ -44,21 +44,6 @@ var HTML5AudioSound = new Class({
|
||||||
* @default 0
|
* @default 0
|
||||||
*/
|
*/
|
||||||
this.previousTime = 0;
|
this.previousTime = 0;
|
||||||
/**
|
|
||||||
* A queue of all actions performed on a sound object while audio was locked.
|
|
||||||
* Once the audio gets unlocked, after an explicit user interaction,
|
|
||||||
* all actions will be performed in chronological order.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @property {{
|
|
||||||
* sound: Phaser.Sound.HTML5AudioSound,
|
|
||||||
* type: string,
|
|
||||||
* name: string,
|
|
||||||
* value?: any,
|
|
||||||
* time: number,
|
|
||||||
* }[]} touchLockedActionQueue
|
|
||||||
*/
|
|
||||||
this.touchLockedActionQueue = manager.touchLocked ? [] : null;
|
|
||||||
this.duration = this.tags[0].duration;
|
this.duration = this.tags[0].duration;
|
||||||
this.totalDuration = this.tags[0].duration;
|
this.totalDuration = this.tags[0].duration;
|
||||||
BaseSound.call(this, manager, key, config);
|
BaseSound.call(this, manager, key, config);
|
||||||
|
|
Loading…
Reference in a new issue