We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ef44e commit 6b313e6Copy full SHA for 6b313e6
1 file changed
src/renderers/common/RenderObject.js
@@ -511,7 +511,12 @@ class RenderObject {
511
512
// geometry attribute
513
attribute = geometry.getAttribute( nodeAttribute.name );
514
- attributesId[ nodeAttribute.name ] = attribute.id;
+
515
+ if ( attribute !== undefined ) {
516
517
+ attributesId[ nodeAttribute.name ] = attribute.id;
518
519
+ }
520
521
}
522
0 commit comments