Browse Source

RenderObject: Fix ID assignment bug. (#32700)

Michael Herzog 6 months ago
parent
commit
55c047585d
1 changed files with 1 additions and 2 deletions
  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号