@onerjs/loaders 8.54.5 → 8.54.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12,8 +12,8 @@ import { Mesh } from "@onerjs/core/Meshes/mesh.pure.js";
|
|
|
12
12
|
import { type ISceneLoaderAsyncResult, type ISceneLoaderProgressEvent } from "@onerjs/core/Loading/sceneLoader.js";
|
|
13
13
|
import { type Scene } from "@onerjs/core/scene.js";
|
|
14
14
|
import { type IProperty } from "babylonjs-gltf2interface";
|
|
15
|
-
import { type
|
|
16
|
-
import { type IGLTFLoader, type IGLTFLoaderData
|
|
15
|
+
import { type IAccessor, type IAnimation, type IAnimationChannel, type IArrayItem, type IBuffer, type IBufferView, type ICamera, type IGLTF, type IImage, type IMaterial, type IMesh, type IMeshPrimitive, type INode, type ISampler, type IScene, type ITexture, type ITextureInfo } from "./glTFLoaderInterfaces.js";
|
|
16
|
+
import { GLTFFileLoader, type IGLTFLoader, type IGLTFLoaderData } from "../glTFFileLoader.pure.js";
|
|
17
17
|
import { type IDataBuffer } from "@onerjs/core/Misc/dataReader.js";
|
|
18
18
|
import { type Light } from "@onerjs/core/Lights/light.js";
|
|
19
19
|
import { BoundingInfo } from "@onerjs/core/Culling/boundingInfo.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Deferred } from "@onerjs/core/Misc/deferred.js";
|
|
2
|
-
import {
|
|
2
|
+
import { Matrix, Quaternion, TmpVectors, Vector3 } from "@onerjs/core/Maths/math.vector.pure.js";
|
|
3
3
|
import { Color3 } from "@onerjs/core/Maths/math.color.pure.js";
|
|
4
4
|
import { Tools } from "@onerjs/core/Misc/tools.pure.js";
|
|
5
5
|
import { Camera } from "@onerjs/core/Cameras/camera.pure.js";
|
|
@@ -16,7 +16,7 @@ import { AbstractMesh } from "@onerjs/core/Meshes/abstractMesh.pure.js";
|
|
|
16
16
|
import { Mesh } from "@onerjs/core/Meshes/mesh.pure.js";
|
|
17
17
|
import { MorphTarget } from "@onerjs/core/Morph/morphTarget.js";
|
|
18
18
|
import { MorphTargetManager } from "@onerjs/core/Morph/morphTargetManager.js";
|
|
19
|
-
import { GLTFFileLoader,
|
|
19
|
+
import { GLTFFileLoader, GLTFLoaderAnimationStartMode, GLTFLoaderCoordinateSystemMode, GLTFLoaderState } from "../glTFFileLoader.pure.js";
|
|
20
20
|
import { DecodeBase64UrlToBinary, GetMimeType, IsBase64DataUrl, LoadFileError } from "@onerjs/core/Misc/fileTools.pure.js";
|
|
21
21
|
import { Logger } from "@onerjs/core/Misc/logger.js";
|
|
22
22
|
import { RandomGUID } from "@onerjs/core/Misc/guid.js";
|