Skip to content

Commit fbb1388

Browse files
Added unlocked property to BaseSoundManager class for internal use
1 parent 9ed999f commit fbb1388

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/sound/BaseSoundManager.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ var BaseSoundManager = new Class({
108108
* @default false
109109
*/
110110
this.locked = false;
111+
/**
112+
* Flag used internally for handling when the audio system
113+
* has been unlocked, if there ever was a need for it.
114+
*
115+
* @private
116+
* @property {boolean} unlocked
117+
* @default false
118+
*/
119+
this.unlocked = false;
111120
if (this.locked) {
112121
this.unlock();
113122
}

0 commit comments

Comments
 (0)