添加关照、全局等高线、修改图层问题
This commit is contained in:
14
dist/electron/static/sdk/three/jsm/nodes/parsers/GLSLNodeParser.js
vendored
Normal file
14
dist/electron/static/sdk/three/jsm/nodes/parsers/GLSLNodeParser.js
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import NodeParser from '../core/NodeParser.js';
|
||||
import GLSLNodeFunction from './GLSLNodeFunction.js';
|
||||
|
||||
class GLSLNodeParser extends NodeParser {
|
||||
|
||||
parseFunction( source ) {
|
||||
|
||||
return new GLSLNodeFunction( source );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
export default GLSLNodeParser;
|
Reference in New Issue
Block a user