@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/types.d.ts
CHANGED
|
@@ -147,6 +147,10 @@ export interface ILoadSceneOptions {
|
|
|
147
147
|
* 应用预设效果
|
|
148
148
|
*/
|
|
149
149
|
applyPresetEffects?: boolean;
|
|
150
|
+
/**
|
|
151
|
+
* 同步场景算法 BFS | DFS
|
|
152
|
+
*/
|
|
153
|
+
loadSceneAlgorithm?: LoadSceneAlgorithm;
|
|
150
154
|
}
|
|
151
155
|
/**
|
|
152
156
|
* properties map
|
|
@@ -172,6 +176,10 @@ export interface TLicense {
|
|
|
172
176
|
sign: string;
|
|
173
177
|
content: string;
|
|
174
178
|
}
|
|
179
|
+
export declare enum LoadSceneAlgorithm {
|
|
180
|
+
BFS = "BFS",
|
|
181
|
+
DFS = "DFS"
|
|
182
|
+
}
|
|
175
183
|
export interface Options {
|
|
176
184
|
key?: string;
|
|
177
185
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soonspacejs/plugin-cps-soonmanager",
|
|
3
3
|
"pluginName": "CpsSoonmanagerPlugin",
|
|
4
|
-
"version": "2.8.
|
|
4
|
+
"version": "2.8.13",
|
|
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,8 +13,8 @@
|
|
|
13
13
|
],
|
|
14
14
|
"author": "xunwei",
|
|
15
15
|
"license": "UNLICENSED",
|
|
16
|
-
"gitHead": "
|
|
16
|
+
"gitHead": "d5982117927d8f1eccf32efbe1fec6238b7517e6",
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"soonspacejs": "2.8.
|
|
18
|
+
"soonspacejs": "2.8.13"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
File without changes
|