starry / backend /libs /three /loaders /MaterialLoader.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Loader } from './Loader';
import { LoadingManager } from './LoadingManager';
import { Texture } from './../textures/Texture';
import { Material } from './../materials/Material';
export class MaterialLoader extends Loader {
constructor(manager?: LoadingManager);
/**
* @default {}
*/
textures: { [key: string]: Texture };
load(url: string, onLoad: (material: Material) => void, onProgress?: (event: ProgressEvent) => void, onError?: (event: Error | ErrorEvent) => void): void;
loadAsync(url: string, onProgress?: (event: ProgressEvent) => void): Promise<Material>;
setTextures(textures: { [key: string]: Texture }): this;
parse(json: any): Material;
}