Skip to content

Commit da56f97

Browse files
Removed touchLockedActionQueue from HTML5AudioSound class
1 parent 913f388 commit da56f97

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

src/sound/html5/HTML5AudioSound.js

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,21 +44,6 @@ var HTML5AudioSound = new Class({
4444
* @default 0
4545
*/
4646
this.previousTime = 0;
47-
/**
48-
* A queue of all actions performed on a sound object while audio was locked.
49-
* Once the audio gets unlocked, after an explicit user interaction,
50-
* all actions will be performed in chronological order.
51-
*
52-
* @private
53-
* @property {{
54-
* sound: Phaser.Sound.HTML5AudioSound,
55-
* type: string,
56-
* name: string,
57-
* value?: any,
58-
* time: number,
59-
* }[]} touchLockedActionQueue
60-
*/
61-
this.touchLockedActionQueue = manager.touchLocked ? [] : null;
6247
this.duration = this.tags[0].duration;
6348
this.totalDuration = this.tags[0].duration;
6449
BaseSound.call(this, manager, key, config);

0 commit comments

Comments
 (0)