瀏覽代碼

Merge pull request #23182 from sunag/dev-node-fix

NodeMaterial: Missing CondNode in Nodes.js
sunag 3 年之前
父節點
當前提交
cab469bc0d
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      examples/jsm/renderers/nodes/Nodes.js

+ 2 - 0
examples/jsm/renderers/nodes/Nodes.js

@@ -55,6 +55,7 @@ import NormalMapNode from './display/NormalMapNode.js';
 // math
 // math
 import MathNode from './math/MathNode.js';
 import MathNode from './math/MathNode.js';
 import OperatorNode from './math/OperatorNode.js';
 import OperatorNode from './math/OperatorNode.js';
+import CondNode from './math/CondNode.js';
 
 
 // lights
 // lights
 import LightContextNode from './lights/LightContextNode.js';
 import LightContextNode from './lights/LightContextNode.js';
@@ -143,6 +144,7 @@ export {
 	// math
 	// math
 	MathNode,
 	MathNode,
 	OperatorNode,
 	OperatorNode,
+	CondNode,
 
 
 	// lights
 	// lights
 	LightContextNode,
 	LightContextNode,