@smplrspace/smplr-loader 2.16.2-beta.10 → 2.16.2-beta.11
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.
|
@@ -672,6 +672,7 @@ export declare class Space {
|
|
|
672
672
|
includeAllLevels(): void;
|
|
673
673
|
showUpToLevel(levelIndex: number): void;
|
|
674
674
|
showAllLevels(): void;
|
|
675
|
+
setMode(mode: CameraMode): void;
|
|
675
676
|
updateRenderOptions(options: RenderOptions): void;
|
|
676
677
|
}
|
|
677
678
|
|
|
@@ -717,7 +718,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
717
718
|
z: number;
|
|
718
719
|
}
|
|
719
720
|
|
|
720
|
-
export declare const version = "2.16.2-beta.
|
|
721
|
+
export declare const version = "2.16.2-beta.11";
|
|
721
722
|
|
|
722
723
|
declare interface ViewerOptions {
|
|
723
724
|
mode?: CameraMode;
|
|
@@ -752,6 +753,7 @@ declare interface ViewerRendererHandle {
|
|
|
752
753
|
includeAllLevels: () => void
|
|
753
754
|
showUpToLevel: (levelIndex: number) => void
|
|
754
755
|
showAllLevels: () => void
|
|
756
|
+
setMode: (mode: CameraMode) => void
|
|
755
757
|
updateRenderOptions: (options: RenderOptions) => void
|
|
756
758
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
757
759
|
getFurnitureElementInstance: (furnitureId: string | string[]) => any
|