Explorar el Código

Set magFilter and minFilter to NearestFilter for gradientMap in MMDLoader

Takahiro hace 6 años
padre
commit
bbc6336682
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      examples/js/loaders/MMDLoader.js

+ 3 - 0
examples/js/loaders/MMDLoader.js

@@ -1359,6 +1359,9 @@ THREE.MMDLoader = ( function () {
 
 					t.image = scope._getRotatedImage( t.image );
 
+					t.magFilter = THREE.NearestFilter;
+					t.minFilter = THREE.NearestFilter;
+
 				}
 
 				t.flipY = false;