Explorar el Código

RenderObject: Fix ID assignment bug. (#32700)

Michael Herzog hace 6 meses
padre
commit
55c047585d
Se han modificado 1 ficheros con 1 adiciones y 2 borrados
  1. 1 2
      src/renderers/common/RenderObject.js

+ 1 - 2
src/renderers/common/RenderObject.js

@@ -511,8 +511,7 @@ class RenderObject {
 
 				// geometry attribute
 				attribute = geometry.getAttribute( nodeAttribute.name );
-
-				attributesId[ nodeAttribute.name ] = attribute.version;
+				attributesId[ nodeAttribute.name ] = attribute.id;
 
 			}
 

粤ICP备19079148号