Cesium-Examples/libs/three/examples/jsm/renderers/common/Sampler.js
2025-03-19 11:00:22 +08:00

19 lines
239 B
JavaScript

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