Преглед на файлове

TSL: Fix Math/Operators fail generate cache with same node (#28502)

sunag преди 1 година
родител
ревизия
23e68107bc
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      examples/jsm/nodes/core/Node.js

+ 3 - 1
examples/jsm/nodes/core/Node.js

@@ -199,9 +199,11 @@ class Node extends EventDispatcher {
 
 		const nodeProperties = builder.getNodeProperties( this );
 
+		let index = 0;
+
 		for ( const childNode of this.getChildren() ) {
 
-			nodeProperties[ '_node' + childNode.id ] = childNode;
+			nodeProperties[ 'node' + index ++ ] = childNode;
 
 		}