ThreePipe
    Preparing search index...

    Interface RootSceneImportResult

    interface RootSceneImportResult {
        _childrenCopy?: Object3D<Object3DEventMap>[];
        importedViewerConfig?: ISerializedViewerConfig;
        userData: {
            __importData?: any;
            gltfAsset?: {};
            gltfExtras?: Record<string, any>;
            rootSceneModelRoot?: true;
            [key: string]: any;
        };
        visible: true;
    }

    Hierarchy

    Index

    Properties

    _childrenCopy?: Object3D<Object3DEventMap>[]

    copy of children to use after import, set in processRaw

    importedViewerConfig?: ISerializedViewerConfig
    userData: {
        __importData?: any;
        gltfAsset?: {};
        gltfExtras?: Record<string, 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