Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/js/three/src/textures/DataArrayTexture.js
2025-12-09 20:22:03 +08:00

28 lines
544 B
JavaScript

import { Texture } from './Texture.js';
import { ClampToEdgeWrapping, NearestFilter } from '../constants.js';
class DataArrayTexture extends Texture {
constructor( data = null, width = 1, height = 1, depth = 1 ) {
super( null );
this.isDataArrayTexture = true;
this.image = { data, width, height, depth };
this.magFilter = NearestFilter;
this.minFilter = NearestFilter;
this.wrapR = ClampToEdgeWrapping;
this.generateMipmaps = false;
this.flipY = false;
this.unpackAlignment = 1;
}
}
export { DataArrayTexture };