Type Alias ParsedResultType<Scene>

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

Type Parameters

  • Scene = THREE.Object3D