فهرست منبع

Audio: Clean up.

Mr.doob 9 سال پیش
والد
کامیت
3d220dc0d9
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      src/audio/Audio.js

+ 3 - 2
src/audio/Audio.js

@@ -103,6 +103,7 @@ THREE.Audio.prototype = Object.assign( Object.create( THREE.Object3D.prototype )
 
 		this.source.stop();
 		this.startTime = this.context.currentTime;
+		this.isPlaying = false;
 
 		return this;
 
@@ -116,10 +117,10 @@ THREE.Audio.prototype = Object.assign( Object.create( THREE.Object3D.prototype )
 			return;
 
 		}
-		
-		this.isPlaying = false;
+
 		this.source.stop();
 		this.startTime = 0;
+		this.isPlaying = false;
 
 		return this;