Interface RootSceneImportResult

interface RootSceneImportResult {
    importedViewerConfig?: ISerializedViewerConfig;
    userData: {
        __importData?: any;
        gltfAsset?: {};
        gltfExtras?: any;
        rootSceneModelRoot?: true;
        [key: string]: any;
    };
    visible: true;
}

Hierarchy

Properties

importedViewerConfig?: ISerializedViewerConfig
userData: {
    __importData?: any;
    gltfAsset?: {};
    gltfExtras?: any;
    rootSceneModelRoot?: true;
    [key: string]: any;
}

An object that can be used to store custom data about the Object3D.

It should not hold references to functions as these will not be cloned.

{}

visible: true

Object gets rendered if true.

true