@soonspacejs/plugin-cps-soonmanager 2.11.3 → 2.11.5
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 +6 -2
- package/dist/index.esm.js +2 -2
- package/dist/types.d.ts +5 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import SoonSpace, { TopologyNodeInfo } from 'soonspacejs';
|
|
2
|
-
import type { BaseObject3D, TopologyInfo } from 'soonspacejs/types/Library';
|
|
2
|
+
import type { BaseObject3D, Group, TopologyInfo } from 'soonspacejs/types/Library';
|
|
3
3
|
import { PoiNodeData } from '@soonspacejs/plugin-poi-renderer';
|
|
4
4
|
import SoonFlow from '@soonflow/core';
|
|
5
5
|
import { Tween } from '@tweenjs/tween.js';
|
|
@@ -9,6 +9,10 @@ declare class CpsSoonmanagerPlugin {
|
|
|
9
9
|
readonly ssp: SoonSpace;
|
|
10
10
|
get path(): string;
|
|
11
11
|
set path(val: string);
|
|
12
|
+
/**
|
|
13
|
+
* 场景 group 包裹
|
|
14
|
+
*/
|
|
15
|
+
sceneGroup: Group | null;
|
|
12
16
|
/**
|
|
13
17
|
* 场景元数据
|
|
14
18
|
*/
|
|
@@ -119,7 +123,7 @@ declare class CpsSoonmanagerPlugin {
|
|
|
119
123
|
/**
|
|
120
124
|
* 加载整个场景
|
|
121
125
|
*/
|
|
122
|
-
loadScene(options?: ILoadSceneOptions): Promise<
|
|
126
|
+
loadScene(options?: ILoadSceneOptions): Promise<undefined>;
|
|
123
127
|
/**
|
|
124
128
|
* 预设效果
|
|
125
129
|
*/
|