Files
td_official/public/sdk/three/jsm/nodes/parsers/GLSLNodeParser.js

15 lines
254 B
JavaScript
Raw Normal View History

2025-07-29 11:22:30 +08: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;