Browse Source

Merge pull request #8506 from JustinHoldstock/dev

Set to use HAVE_CURRENT_DATA for VideoTexture updates
Mr.doob 9 năm trước cách đây
mục cha
commit
955c2187d7
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/textures/VideoTexture.js

+ 1 - 1
src/textures/VideoTexture.js

@@ -14,7 +14,7 @@ THREE.VideoTexture = function ( video, mapping, wrapS, wrapT, magFilter, minFilt
 
 		requestAnimationFrame( update );
 
-		if ( video.readyState === video.HAVE_ENOUGH_DATA ) {
+		if ( video.readyState >= video.HAVE_CURRENT_DATA ) {
 
 			scope.needsUpdate = true;