Explorar el Código

colorTexture is optional, account for this (#28417)

Co-authored-by: aardgoose <angus.sawyer@email.com>
aardgoose hace 2 años
padre
commit
0dee424c03
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      examples/jsm/renderers/common/RenderObject.js

+ 6 - 1
examples/jsm/renderers/common/RenderObject.js

@@ -225,7 +225,12 @@ export default class RenderObject {
 		if ( object.isBatchedMesh ) {
 
 			cacheKey += object._matricesTexture.uuid + ',';
-			cacheKey += object._colorsTexture.uuid + ',';
+
+			if ( object._colorsTexture !== null ) {
+
+				cacheKey += object._colorsTexture.uuid + ',';
+
+			}
 
 		}
 

粤ICP备19079148号