bimatter-viewer-react 0.7.4 → 0.7.5
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.
- package/lib/GTAONode-qFlUqZrx.js +104 -0
- package/lib/Model.d.ts +2 -1
- package/lib/ModelUploadQueue.d.ts +2 -1
- package/lib/Selector/useSelector.d.ts +1 -1
- package/lib/api/ViewerApi.d.ts +5 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +2432 -2117
- package/lib/rolldown-runtime-CAFD8bLK.js +11 -0
- package/lib/three.tsl-Dfou2CS1.js +638 -0
- package/lib/{three.webgpu-Br297kyp.js → three.webgpu-7Fqpf016.js} +12184 -5451
- package/lib/types.d.ts +1 -0
- package/lib/workers/ProgressUtils.d.ts +1 -1
- package/package.json +1 -1
- /package/lib/{IFCLoader-zJS-nVu_.js → IFCLoader-DTb3WbP_.js} +0 -0
package/lib/types.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type ViewerModelRef = RefObject<ViewerModelGroup | null>;
|
|
|
8
8
|
export type ViewerCameraRef = RefObject<Camera | null>;
|
|
9
9
|
export type ViewerControlsRef = RefObject<CameraControlsImpl | null>;
|
|
10
10
|
export type ViewerLightRef = RefObject<DirectionalLight | null>;
|
|
11
|
+
export type ViewerCameraProjection = "perspective" | "orthographic";
|
|
11
12
|
export type ViewerMaterialMode = "quality" | "performance";
|
|
12
13
|
export type ViewerPostproductionPassType = "N8AO" | "SSAO" | null;
|
|
13
14
|
export type ViewerUploadMode = "smooth" | "balanced" | "fast";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type WorkerProgressPhase = "queued" | "reading" | "fetching" | "initializing" | "opening" | "parsing" | "properties" | "exporting" | "complete" | "error";
|
|
1
|
+
export type WorkerProgressPhase = "queued" | "reading" | "fetching" | "initializing" | "opening" | "parsing" | "properties" | "exporting" | "uploading" | "complete" | "error";
|
|
2
2
|
export type WorkerProgressEvent = {
|
|
3
3
|
loaded?: number;
|
|
4
4
|
message?: string;
|
package/package.json
CHANGED
|
File without changes
|