@manycore/custom-sdk 3.0.0-beta.0 → 3.0.0-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.
Files changed (3) hide show
  1. package/index.d.ts +16 -0
  2. package/index.js +15 -15
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -814,6 +814,16 @@ export declare enum ETriggerType {
814
814
  DB_CLICK = 'double_click',
815
815
  }
816
816
 
817
+ /** @ignore */
818
+ export declare enum Face {
819
+ Bottom = 'bottom',
820
+ Front = 'front',
821
+ Left = 'left',
822
+ Right = 'right',
823
+ Back = 'back',
824
+ Top = 'top',
825
+ }
826
+
817
827
  /**
818
828
  * 附加通用参数-几何体颜色key
819
829
  * @default 孔:0x00ff00 槽:0x1e90ff 五金槽:0x1e90ff
@@ -3061,6 +3071,12 @@ export declare class FittingDesignService extends BaseService {
3061
3071
  * ```
3062
3072
  */
3063
3073
  moveCamera(direction: ECameraMoveDirection): void;
3074
+ /**
3075
+ * 相机视角调整
3076
+ * @param face
3077
+ * @ignore
3078
+ */
3079
+ focusFace(face: Face): void;
3064
3080
  }
3065
3081
 
3066
3082
  /**