We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee7b5d commit 3d220dcCopy full SHA for 3d220dc
src/audio/Audio.js
@@ -103,6 +103,7 @@ THREE.Audio.prototype = Object.assign( Object.create( THREE.Object3D.prototype )
103
104
this.source.stop();
105
this.startTime = this.context.currentTime;
106
+ this.isPlaying = false;
107
108
return this;
109
@@ -116,10 +117,10 @@ THREE.Audio.prototype = Object.assign( Object.create( THREE.Object3D.prototype )
116
117
return;
118
119
}
-
120
- this.isPlaying = false;
+
121
122
this.startTime = 0;
123
124
125
126
0 commit comments