three
Version:
JavaScript 3D library
22 lines (11 loc) • 304 B
JavaScript
import WebGPUSampler from '../WebGPUSampler.js';
class WebGPUNodeSampler extends WebGPUSampler {
constructor( name, textureNode ) {
super( name, textureNode.value );
this.textureNode = textureNode;
}
getTexture() {
return this.textureNode.value;
}
}
export default WebGPUNodeSampler;