最新代码
This commit is contained in:
14
public/sdk/three/jsm/nodes/parsers/GLSLNodeParser.js
Normal file
14
public/sdk/three/jsm/nodes/parsers/GLSLNodeParser.js
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