Browse Source

NodeBuilder: Cache buffer attributes for vertex stage only. (#32189)

Michael Herzog 2 months ago
parent
commit
1ac2c02520
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/nodes/core/NodeBuilder.js

+ 1 - 1
src/nodes/core/NodeBuilder.js

@@ -1777,7 +1777,7 @@ class NodeBuilder {
 	 */
 	getBufferAttributeFromNode( node, type ) {
 
-		const nodeData = this.getDataFromNode( node );
+		const nodeData = this.getDataFromNode( node, 'vertex' );
 
 		let bufferAttribute = nodeData.bufferAttribute;
 

粤ICP备19079148号