Files
2026-02-01 13:40:05 +01:00

20 lines
313 B
JavaScript

import { Texture, LinearFilter } from 'three';
class StorageTexture extends Texture {
constructor( width = 1, height = 1 ) {
super();
this.image = { width, height };
this.magFilter = LinearFilter;
this.minFilter = LinearFilter;
this.isStorageTexture = true;
}
}
export default StorageTexture;