starry / backend /libs /three /renderers /webgl /WebGLCubeUVMaps.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { WebGLRenderer, Texture } from '../../Three';
export class WebGLCubeUVMaps {
constructor(renderer: WebGLRenderer);
get<T>(texture: T): T extends Texture ? Texture : T;
dispose(): void;
}