We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad68701 commit 97441f3Copy full SHA for 97441f3
1 file changed
v3/src/sound/webaudio/WebAudioSound.js
@@ -84,6 +84,10 @@ var WebAudioSound = new Class({
84
var seek = this.currentConfig.seek;
85
var offset = (this.currentMarker ? this.currentMarker.start : 0) + seek;
86
var duration = this.duration - seek;
87
+ this.rateUpdates.push({
88
+ time: 0,
89
+ rate: 1
90
+ });
91
this.createAndStartBufferSource(offset, duration);
92
this.startTime = this.manager.context.currentTime - seek;
93
this.pausedTime = 0;
0 commit comments