nanobot-voice-interface/frontend/node_modules/three/examples/jsm/nodes/parsers/GLSLNodeParser.js

15 lines
254 B
JavaScript
Raw Normal View History

2026-03-06 22:51:19 -05: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;