Browse Source

Nodes: Rename MathUtilsNode -> MathUtils (#27629)

sunag 1 year ago
parent
commit
687bb042b2
2 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/jsm/nodes/Nodes.js
  2. 0 0
      examples/jsm/nodes/math/MathUtils.js

+ 1 - 1
examples/jsm/nodes/Nodes.js

@@ -46,7 +46,7 @@ export { default as CondNode, cond } from './math/CondNode.js';
 export { default as HashNode, hash } from './math/HashNode.js';
 
 // math utils
-export { parabola, gain, pcurve, sinc } from './math/MathUtilsNode.js';
+export { parabola, gain, pcurve, sinc } from './math/MathUtils.js';
 export { triNoise3D } from './math/TriNoise3D.js';
 
 // utils

+ 0 - 0
examples/jsm/nodes/math/MathUtilsNode.js → examples/jsm/nodes/math/MathUtils.js