浏览代码

WebGPURenderer: Fix Geometry does not have the Attribute requested by the Material (#27454)

* WebGPURenderer: Fix Geometry does not have the Attribute

* cleanup
sunag 1 年之前
父节点
当前提交
00f29b8f28
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      examples/jsm/renderers/common/RenderObject.js

+ 2 - 0
examples/jsm/renderers/common/RenderObject.js

@@ -82,6 +82,8 @@ export default class RenderObject {
 
 
 			const attribute = nodeAttribute.node && nodeAttribute.node.attribute ? nodeAttribute.node.attribute : geometry.getAttribute( nodeAttribute.name );
 			const attribute = nodeAttribute.node && nodeAttribute.node.attribute ? nodeAttribute.node.attribute : geometry.getAttribute( nodeAttribute.name );
 
 
+			if ( attribute === undefined ) continue;
+
 			attributes.push( attribute );
 			attributes.push( attribute );
 
 
 			const bufferAttribute = attribute.isInterleavedBufferAttribute ? attribute.data : attribute;
 			const bufferAttribute = attribute.isInterleavedBufferAttribute ? attribute.data : attribute;