| 123456789101112131415161718192021 | 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;
 |