Explorar o código

Fix a typo related to the STEP MathNode (#23042)

William McMurray %!s(int64=3) %!d(string=hai) anos
pai
achega
9dee529ef9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/jsm/renderers/nodes/math/MathNode.js

+ 1 - 1
examples/jsm/renderers/nodes/math/MathNode.js

@@ -187,7 +187,7 @@ class MathNode extends TempNode {
 			} else if ( method === MathNode.STEP ) {
 
 				params.push(
-					b.build( builder, builder.getTypeLength( a.getNodeType( builder ) ) === 1 ? 'float' : inputType ),
+					a.build( builder, builder.getTypeLength( a.getNodeType( builder ) ) === 1 ? 'float' : inputType ),
 					b.build( builder, inputType )
 				);