We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4939d commit 0d1fb8aCopy full SHA for 0d1fb8a
1 file changed
v3/src/sound/webaudio/WebAudioSound.js
@@ -32,6 +32,13 @@ var WebAudioSound = new Class({
32
* @property {GainNode} volumeNode
33
*/
34
this.volumeNode = manager.context.createGain();
35
+ /**
36
+ * The time the previous playback started at based on
37
+ * BaseAudioContext.currentTime value.
38
+ *
39
+ * @property {number} startTime
40
+ */
41
+ this.startTime = 0;
42
this.muteNode.connect(this.volumeNode);
43
this.volumeNode.connect(manager.destination);
44
if (config === void 0) {
0 commit comments