bimatter-viewer-react 0.6.4 → 0.6.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.
package/README.md CHANGED
@@ -634,6 +634,8 @@ viewerRef.current?.utils.setGridAxesVisibility({
634
634
 
635
635
  `P` - Create clipping plane by model intersection
636
636
 
637
+ `ALT + Drag` - Drag clipping plane
638
+
637
639
  ### Dimensions
638
640
 
639
641
  `M` - Toggle dimension drawing mode
package/lib/Viewer.d.ts CHANGED
@@ -21,6 +21,7 @@ export type ViewerProps = {
21
21
  selected?: ViewerSelection;
22
22
  showNavCube?: boolean;
23
23
  showStats?: boolean;
24
+ usePerformanceMoving?: boolean;
24
25
  };
25
26
  declare const Viewer: import("react").ForwardRefExoticComponent<ViewerProps & import("react").RefAttributes<ViewerApi>>;
26
27
  export default Viewer;