node-ejs-renderer/node_modules/three/examples/jsm/nodes/parsers/GLSLNodeParser.js

15 lines
254 B
JavaScript
Raw Permalink Normal View History

2024-06-09 13:55:01 -04:00
import NodeParser from '../core/NodeParser.js';
import GLSLNodeFunction from './GLSLNodeFunction.js';
class GLSLNodeParser extends NodeParser {
parseFunction( source ) {
return new GLSLNodeFunction( source );
}
}
export default GLSLNodeParser;