@galacean/effects-core 2.1.0-alpha.0 → 2.1.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.
@@ -38,10 +38,6 @@ export declare class AssetManager implements Disposable {
38
38
  */
39
39
  constructor(options?: SceneLoadOptions, downloader?: Downloader);
40
40
  updateOptions(options?: SceneLoadOptions): void;
41
- /**
42
- * 根据用户传入的参数修改场景数据
43
- */
44
- private updateSceneData;
45
41
  /**
46
42
  * 场景创建,通过 json 创建出场景对象,并进行提前编译等工作
47
43
  * @param url - json 的 URL 链接或者 json 对象
@@ -32,6 +32,8 @@ export declare class CompositionComponent extends Behaviour {
32
32
  getReusable(): boolean;
33
33
  onUpdate(dt: number): void;
34
34
  createContent(): void;
35
+ showItems(): void;
36
+ hideItems(): void;
35
37
  onDestroy(): void;
36
38
  hitTest(ray: Ray, x: number, y: number, regions: Region[], force?: boolean, options?: CompositionHitTestOptions): Region[];
37
39
  fromData(data: unknown): void;
@@ -281,7 +281,6 @@ export declare class Composition extends EventEmitter<CompositionEvent<Compositi
281
281
  /**
282
282
  * 前进合成到指定时间
283
283
  * @param time - 相对0时刻的时间
284
- * @param skipRender - 是否跳过渲染
285
284
  */
286
285
  private forwardTime;
287
286
  /**
@@ -293,7 +292,6 @@ export declare class Composition extends EventEmitter<CompositionEvent<Compositi
293
292
  /**
294
293
  * 合成更新,针对所有 item 的更新
295
294
  * @param deltaTime - 更新的时间步长
296
- * @param skipRender - 是否需要渲染
297
295
  */
298
296
  update(deltaTime: number): void;
299
297
  private toLocalTime;