@smplrspace/smplr-loader 2.15.2-beta.0 → 2.15.2-beta.1
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.
|
@@ -616,6 +616,9 @@ declare interface RenderOptions {
|
|
|
616
616
|
maxHeightCm?: number
|
|
617
617
|
showStructuralWalls?: boolean
|
|
618
618
|
}
|
|
619
|
+
grounds?: {
|
|
620
|
+
render?: boolean
|
|
621
|
+
}
|
|
619
622
|
doors?: boolean
|
|
620
623
|
windows?: boolean
|
|
621
624
|
flip?: boolean
|
|
@@ -701,6 +704,8 @@ export declare class Space {
|
|
|
701
704
|
zoomOut(): void;
|
|
702
705
|
showUpToLevel(levelIndex: number): void;
|
|
703
706
|
showAllLevels(): void;
|
|
707
|
+
updateRenderOptions(options: RenderOptions): void;
|
|
708
|
+
resetRenderOptions(): void;
|
|
704
709
|
}
|
|
705
710
|
|
|
706
711
|
declare interface SpaceOptions {
|
|
@@ -745,7 +750,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
745
750
|
z: number;
|
|
746
751
|
}
|
|
747
752
|
|
|
748
|
-
export declare const version = "2.15.2-beta.
|
|
753
|
+
export declare const version = "2.15.2-beta.1";
|
|
749
754
|
|
|
750
755
|
declare interface ViewerOptions {
|
|
751
756
|
mode?: CameraMode;
|
|
@@ -774,6 +779,8 @@ declare interface ViewerRendererHandle {
|
|
|
774
779
|
centerCam: () => void
|
|
775
780
|
showUpToLevel: (levelIndex: number) => void
|
|
776
781
|
showAllLevels: () => void
|
|
782
|
+
updateRenderOptions: (options: RenderOptions) => void
|
|
783
|
+
resetRenderOptions: () => void
|
|
777
784
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
778
785
|
getFurnitureElementInstance: (furnitureId: string | string[]) => any
|
|
779
786
|
addEventListener: EventEmitter['addListener']
|