Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Loader, CubeTexture, LoadingManager, TextureDataType } from 'three'
import { RGBELoader } from './RGBELoader'
export class HDRCubeTextureLoader extends Loader {
constructor(manager?: LoadingManager)
hdrLoader: RGBELoader
type: TextureDataType
load(
urls: string | string[],
onLoad: (texture: CubeTexture) => void,
onProgress?: (event: ProgressEvent) => void,
onError?: (event: ErrorEvent) => void,
): CubeTexture
loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise<CubeTexture>
setDataType(type: TextureDataType): this
}