mirror of
https://github.com/jiawanlong/Cesium-Examples.git
synced 2025-07-06 08:17:31 +00:00
19 lines
239 B
JavaScript
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;
|