@soonspacejs/plugin-cps-soonmanager 2.9.7 → 2.10.0-rc.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/index.d.ts +3 -3
- package/dist/index.esm.js +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import SoonSpace, {
|
|
1
|
+
import SoonSpace, { TopologyNodeInfo } from 'soonspacejs';
|
|
2
2
|
import type { BaseObject3D, TopologyInfo } from 'soonspacejs/types/Library';
|
|
3
3
|
import SoonFlow from '@soonflow/core';
|
|
4
4
|
import { Tween } from '@tweenjs/tween.js';
|
|
@@ -127,13 +127,13 @@ declare class CpsSoonmanagerPlugin {
|
|
|
127
127
|
* 飞向场景视角
|
|
128
128
|
* @param index
|
|
129
129
|
*/
|
|
130
|
-
flyToSceneFromVisionsData(index?: number
|
|
130
|
+
flyToSceneFromVisionsData(index?: number): Promise<void>;
|
|
131
131
|
/**
|
|
132
132
|
* 飞向对象视角
|
|
133
133
|
* @param object
|
|
134
134
|
* @param index
|
|
135
135
|
*/
|
|
136
|
-
flyToObjectFromVisionsData(object: BaseObject3D, index?: number
|
|
136
|
+
flyToObjectFromVisionsData(object: BaseObject3D, index?: number): Promise<void>;
|
|
137
137
|
/**
|
|
138
138
|
* 执行流程
|
|
139
139
|
* @param id 流程 id
|