Type Alias LoadResultType<Scene>

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

Type Parameters

  • Scene = THREE.Object3D