@soonspacejs/plugin-cps-soonmanager 2.10.0-rc.8 → 2.10.0

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/dist/types.d.ts CHANGED
@@ -171,7 +171,7 @@ export interface IModelVisions {
171
171
  code?: any;
172
172
  position: IVector3;
173
173
  rotation: IVector3;
174
- target: IVector3 | null;
174
+ target: IVector3;
175
175
  }
176
176
  /**
177
177
  * 预设效果 options
@@ -228,6 +228,10 @@ export interface ILoadSceneOptions extends ConstructorOptions {
228
228
  * 需要加载的层级(DFS时有效)
229
229
  */
230
230
  loadLevel?: number;
231
+ /**
232
+ * 需要隐藏的对象 id
233
+ */
234
+ hiddenObjects?: Set<string>;
231
235
  /**
232
236
  * 加载 poi
233
237
  */
@@ -236,6 +240,10 @@ export interface ILoadSceneOptions extends ConstructorOptions {
236
240
  * 通过数据源刷新 poi
237
241
  */
238
242
  refreshPoiByDataSource?: boolean;
243
+ /**
244
+ * 加载流程数据
245
+ */
246
+ loadFlowData?: boolean;
239
247
  }
240
248
  /**
241
249
  * properties map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soonspacejs/plugin-cps-soonmanager",
3
3
  "pluginName": "CpsSoonmanagerPlugin",
4
- "version": "2.10.0-rc.8",
4
+ "version": "2.10.0",
5
5
  "description": "Sync cps soonmanager data plugin for SoonSpace.js",
6
6
  "main": "dist/index.esm.js",
7
7
  "module": "dist/index.esm.js",
@@ -13,19 +13,19 @@
13
13
  ],
14
14
  "author": "xunwei",
15
15
  "license": "UNLICENSED",
16
- "gitHead": "ca711b91533483ec77adf5d122482a920266f75c",
16
+ "gitHead": "d9a2c72661236562817c8bf10320f8515c39a818",
17
17
  "dependentPlugins": [
18
18
  "plugin-poi-renderer"
19
19
  ],
20
20
  "dependencies": {
21
- "@soonflow/core": "^0.2.3",
22
- "@soonflow/plugin-soonmanager2-node": "^0.2.3",
23
- "@soonflow/plugin-soonmanager2-sync": "^0.2.3",
21
+ "@soonflow/core": "^0.2.8",
22
+ "@soonflow/plugin-soonmanager2-node": "^0.2.8",
23
+ "@soonflow/plugin-soonmanager2-sync": "^0.2.8",
24
24
  "mqtt": "^4.3.7",
25
25
  "socket.io-client": "^4.7.2"
26
26
  },
27
27
  "peerDependencies": {
28
- "@soonspacejs/plugin-poi-renderer": "2.10.0-rc.8",
29
- "soonspacejs": "2.10.0-rc.8"
28
+ "@soonspacejs/plugin-poi-renderer": "2.10.0",
29
+ "soonspacejs": "2.10.0"
30
30
  }
31
31
  }