Interface FormatDescriptor

Pure-format intrinsics held in the registry. Carries nothing about filesystem layout or filename conventions — those live in the ModelLocator owned by Studio.

interface FormatDescriptor {
    fetch: FormatFetchKind;
    load: (input: LoaderInput, options: any) => Promise<any>;
    needsData: boolean;
    needsScene: boolean;
}

Properties

load: (input: LoaderInput, options: any) => Promise<any>
needsData: boolean
needsScene: boolean