three
Version:
JavaScript 3D library
23 lines (12 loc) • 340 B
JavaScript
import Sampler from '../Sampler.js';
class NodeSampler extends Sampler {
constructor( name, textureNode, groupNode ) {
super( name, textureNode ? textureNode.value : null );
this.textureNode = textureNode;
this.groupNode = groupNode;
}
update() {
this.texture = this.textureNode.value;
}
}
export default NodeSampler;