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
+20
View File
@@ -0,0 +1,20 @@
import { Loader, LoadingManager, DataTexture, Texture } from 'three'
export interface LUT3dlResult {
size: number
texture: DataTexture
texture3D: Texture // Data3DTexture
}
export class LUT3dlLoader extends Loader {
constructor(manager?: LoadingManager)
load(
url: string,
onLoad: (result: LUT3dlResult) => void,
onProgress?: (event: ProgressEvent) => void,
onError?: (event: Error) => void,
): any
loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise<LUT3dlResult>
parse(data: string): LUT3dlResult
}