|  | @@ -39,8 +39,8 @@ import {
 | 
	
		
			
				|  |  |  	LineLoop,
 | 
	
		
			
				|  |  |  	LineSegments,
 | 
	
		
			
				|  |  |  	LinearFilter,
 | 
	
		
			
				|  |  | -	LinearMipMapLinearFilter,
 | 
	
		
			
				|  |  | -	LinearMipMapNearestFilter,
 | 
	
		
			
				|  |  | +	LinearMipmapLinearFilter,
 | 
	
		
			
				|  |  | +	LinearMipmapNearestFilter,
 | 
	
		
			
				|  |  |  	Loader,
 | 
	
		
			
				|  |  |  	LoaderUtils,
 | 
	
		
			
				|  |  |  	LuminanceAlphaFormat,
 | 
	
	
		
			
				|  | @@ -54,8 +54,8 @@ import {
 | 
	
		
			
				|  |  |  	MeshPhongMaterial,
 | 
	
		
			
				|  |  |  	MirroredRepeatWrapping,
 | 
	
		
			
				|  |  |  	NearestFilter,
 | 
	
		
			
				|  |  | -	NearestMipMapLinearFilter,
 | 
	
		
			
				|  |  | -	NearestMipMapNearestFilter,
 | 
	
		
			
				|  |  | +	NearestMipmapLinearFilter,
 | 
	
		
			
				|  |  | +	NearestMipmapNearestFilter,
 | 
	
		
			
				|  |  |  	NeverDepth,
 | 
	
		
			
				|  |  |  	NoBlending,
 | 
	
		
			
				|  |  |  	NotEqualDepth,
 | 
	
	
		
			
				|  | @@ -554,10 +554,10 @@ var LegacyGLTFLoader = ( function () {
 | 
	
		
			
				|  |  |  	var WEBGL_FILTERS = {
 | 
	
		
			
				|  |  |  		9728: NearestFilter,
 | 
	
		
			
				|  |  |  		9729: LinearFilter,
 | 
	
		
			
				|  |  | -		9984: NearestMipMapNearestFilter,
 | 
	
		
			
				|  |  | -		9985: LinearMipMapNearestFilter,
 | 
	
		
			
				|  |  | -		9986: NearestMipMapLinearFilter,
 | 
	
		
			
				|  |  | -		9987: LinearMipMapLinearFilter
 | 
	
		
			
				|  |  | +		9984: NearestMipmapNearestFilter,
 | 
	
		
			
				|  |  | +		9985: LinearMipmapNearestFilter,
 | 
	
		
			
				|  |  | +		9986: NearestMipmapLinearFilter,
 | 
	
		
			
				|  |  | +		9987: LinearMipmapLinearFilter
 | 
	
		
			
				|  |  |  	};
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	var WEBGL_WRAPPINGS = {
 | 
	
	
		
			
				|  | @@ -1226,7 +1226,7 @@ var LegacyGLTFLoader = ( function () {
 | 
	
		
			
				|  |  |  								var sampler = json.samplers[ texture.sampler ];
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  								_texture.magFilter = WEBGL_FILTERS[ sampler.magFilter ] || LinearFilter;
 | 
	
		
			
				|  |  | -								_texture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || NearestMipMapLinearFilter;
 | 
	
		
			
				|  |  | +								_texture.minFilter = WEBGL_FILTERS[ sampler.minFilter ] || NearestMipmapLinearFilter;
 | 
	
		
			
				|  |  |  								_texture.wrapS = WEBGL_WRAPPINGS[ sampler.wrapS ] || RepeatWrapping;
 | 
	
		
			
				|  |  |  								_texture.wrapT = WEBGL_WRAPPINGS[ sampler.wrapT ] || RepeatWrapping;
 | 
	
		
			
				|  |  |  
 |