Cesium-Examples/three/examples/jsm/nodes/parsers/GLSLNodeParser.js

15 lines
254 B
JavaScript
Raw Normal View History

2025-03-11 08:25:45 +00: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;