@galacean/effects-core 2.8.0-alpha.0 → 2.8.0-alpha.2

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.
@@ -58,9 +58,7 @@ export declare class AssetManager implements Disposable {
58
58
  * @param options - 扩展参数
59
59
  * @returns
60
60
  */
61
- loadScene(url: Scene.LoadType, renderer?: Renderer, options?: {
62
- env?: string;
63
- }): Promise<Scene>;
61
+ loadScene(url: Scene.LoadType, renderer?: Renderer): Promise<Scene>;
64
62
  getAssets(): Record<string, ImageLike>;
65
63
  private processJSON;
66
64
  private processBins;
@@ -3,7 +3,6 @@ import type { Ray } from '@galacean/effects-math/es/core/ray';
3
3
  import type { Matrix4 } from '@galacean/effects-math/es/core/matrix4';
4
4
  import { Camera } from './camera';
5
5
  import { CompositionComponent } from './comp-vfx-item';
6
- import type { PluginSystem } from './plugin-system';
7
6
  import type { EventSystem, Region } from './plugins';
8
7
  import type { Renderer } from './render';
9
8
  import { RenderFrame } from './render';
@@ -171,10 +170,6 @@ export declare class Composition extends EventEmitter<CompositionEvent<Compositi
171
170
  * 鼠标和触屏处理系统
172
171
  */
173
172
  readonly event?: EventSystem;
174
- /**
175
- * 插件系统,保存当前加载的插件对象,负责插件事件和创建插件的 Item 对象
176
- */
177
- readonly pluginSystem: PluginSystem;
178
173
  /**
179
174
  * 当前合成名称
180
175
  */
@@ -223,10 +218,6 @@ export declare class Composition extends EventEmitter<CompositionEvent<Compositi
223
218
  * 销毁状态位
224
219
  */
225
220
  protected destroyed: boolean;
226
- /**
227
- * 是否是否每次渲染时清除 RenderFrame 颜色缓存
228
- */
229
- protected readonly keepColorBuffer: boolean;
230
221
  protected rootComposition: CompositionComponent;
231
222
  /**
232
223
  * 合成暂停/播放 标识
@@ -362,11 +353,6 @@ export declare class Composition extends EventEmitter<CompositionEvent<Compositi
362
353
  * @override
363
354
  */
364
355
  private updateCamera;
365
- /**
366
- * 插件更新,来自 CompVFXItem 的更新调用
367
- * @param deltaTime - 更新的时间步长
368
- */
369
- private updatePluginLoaders;
370
356
  /**
371
357
  * 更新主合成组件
372
358
  */