@soonspacejs/plugin-cps-soonmanager 2.15.17 → 2.15.19
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 +2 -4
- package/dist/index.esm.js +1739 -1631
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { default as EffectPlugin } from '@soonspacejs/plugin-effect';
|
|
|
4
4
|
import { default as AtmospherePlugin } from '@soonspacejs/plugin-atmosphere';
|
|
5
5
|
import { FdsManager } from '@soonspacejs/plugin-fds';
|
|
6
6
|
import { FlowType } from '@soonspacejs/plugin-flow';
|
|
7
|
-
import { TerrainTilesRenderer } from '@soonspacejs/plugin-tiles';
|
|
7
|
+
import { TerrainTilesRenderer, TilesRendererManager } from '@soonspacejs/plugin-tiles';
|
|
8
8
|
import { default as SoonFlow } from '@soonflow/core';
|
|
9
9
|
import { AnimationPlayer } from 'umanager-animation-parser';
|
|
10
10
|
import { EventDispatcher } from 'three';
|
|
@@ -98,6 +98,7 @@ declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
|
|
|
98
98
|
*/
|
|
99
99
|
atmospherePlugin: AtmospherePlugin;
|
|
100
100
|
terrainTilesRenderer: TerrainTilesRenderer | undefined;
|
|
101
|
+
tilesRendererManager: TilesRendererManager | undefined;
|
|
101
102
|
/**
|
|
102
103
|
* 流程引擎实咧
|
|
103
104
|
*/
|
|
@@ -217,9 +218,6 @@ declare class CpsSoonmanagerPlugin extends EventDispatcher<IProgressEventMap> {
|
|
|
217
218
|
* workIdMap 与 loadScene/loadSceneAndSemantic 使用完全相同的映射逻辑。
|
|
218
219
|
*/
|
|
219
220
|
loadSceneAndSemanticInWorker(options?: ILoadSceneOptions, workIdMap?: IWorkIdMap | null, workerOptions?: ILoadSceneAndSemanticInWorkerOptions): Promise<ILoadSceneAndSemanticInWorkerResult>;
|
|
220
|
-
/**
|
|
221
|
-
* 预设 GIS 效果
|
|
222
|
-
*/
|
|
223
221
|
presetGis(): Promise<void>;
|
|
224
222
|
/**
|
|
225
223
|
* 预设效果
|