@soonspacejs/plugin-cps-soonmanager 2.8.11 → 2.8.13
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
CHANGED
|
@@ -68,10 +68,15 @@ declare class CpsSoonmanagerPlugin {
|
|
|
68
68
|
* @returns
|
|
69
69
|
*/
|
|
70
70
|
fetchModelVisionsData(): Promise<TModelVisionsMap>;
|
|
71
|
+
private loadNode;
|
|
71
72
|
/**
|
|
72
|
-
* 加载场景树中的对象
|
|
73
|
+
* 加载场景树中的对象 (深度优先遍历)
|
|
73
74
|
*/
|
|
74
75
|
private loadObjects;
|
|
76
|
+
/**
|
|
77
|
+
* 加载场景树中的对象 (广度优先遍历)
|
|
78
|
+
*/
|
|
79
|
+
private loadObjectsBFS;
|
|
75
80
|
/**
|
|
76
81
|
* 设置 path
|
|
77
82
|
* @param path
|
|
@@ -99,5 +104,5 @@ declare class CpsSoonmanagerPlugin {
|
|
|
99
104
|
playAnimationById(id: string, animationIndex?: number, options?: IPlayAnimationByIdOptions): Promise<void>;
|
|
100
105
|
}
|
|
101
106
|
export * from './types';
|
|
102
|
-
export * from './
|
|
107
|
+
export * from './constants';
|
|
103
108
|
export default CpsSoonmanagerPlugin;
|