Initial project import
This commit is contained in:
14
node_modules/three-stdlib/loaders/TGALoader.d.ts
generated
vendored
Normal file
14
node_modules/three-stdlib/loaders/TGALoader.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { DataTexture, DataTextureLoader, LoadingManager } from 'three'
|
||||
|
||||
export class TGALoader extends DataTextureLoader {
|
||||
constructor(manager?: LoadingManager)
|
||||
|
||||
load(
|
||||
url: string,
|
||||
onLoad?: (texture: DataTexture, texData: object) => void,
|
||||
onProgress?: (event: ProgressEvent) => void,
|
||||
onError?: (event: ErrorEvent) => void,
|
||||
): DataTexture
|
||||
loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise<DataTexture>
|
||||
parse(data: ArrayBuffer): DataTexture
|
||||
}
|
||||
Reference in New Issue
Block a user