Type Alias ParsedResultType<Scene>

ParsedResultType<Scene>: {
    byteLength: number;
    dispose: (() => void);
    scene: Scene;
    textures: THREE.Texture[];
    type:
        | "none"
        | "b3dm"
        | "pnts"
        | "at3d"
        | "pbm"
        | "dome"
        | "domez"
        | "glb"
        | "ply"
        | "obj"
        | "fbx";
    uri: string;
}

Type Parameters

  • Scene = THREE.Object3D