Interface LoaderInput

Inputs handed to a FormatDescriptor.load implementation.

The registry resolves which models the format needs via FormatDescriptor.needsScene / FormatDescriptor.needsData and supplies only those — descriptors do not create models themselves.

interface LoaderInput {
    dataModel?: DataModel;
    fileData: any;
    sceneModel?: SceneModel;
}

Properties

dataModel?: DataModel
fileData: any
sceneModel?: SceneModel