nanobot-voice-interface/frontend/node_modules/three/examples/jsm/renderers/common/Sampler.js
2026-03-06 22:51:19 -05:00

18 lines
253 B
JavaScript

import Binding from './Binding.js';
class Sampler extends Binding {
constructor( name, texture ) {
super( name );
this.texture = texture;
this.version = texture ? texture.version : 0;
this.isSampler = true;
}
}
export default Sampler;