node-ejs-renderer/node_modules/three/examples/jsm/renderers/common/nodes/NodeSampler.js
2024-06-09 13:55:01 -04:00

16 lines
240 B
JavaScript

import Sampler from '../Sampler.js';
class NodeSampler extends Sampler {
constructor( name, textureNode ) {
super( name, textureNode ? textureNode.value : null );
this.textureNode = textureNode;
}
}
export default NodeSampler;