Преглед изворни кода

GLTFLoader: Handle zero `ior` edge case. (#33119)

Michael Herzog пре 1 месец
родитељ
комит
6173b5a3a0
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      examples/jsm/loaders/GLTFLoader.js

+ 2 - 0
examples/jsm/loaders/GLTFLoader.js

@@ -1273,6 +1273,8 @@ class GLTFMaterialsIorExtension {
 
 		materialParams.ior = extension.ior !== undefined ? extension.ior : 1.5;
 
+		if ( materialParams.ior === 0 ) materialParams.ior = 1000; // see #26167
+
 		return Promise.resolve();
 
 	}

粤ICP备19079148号