@galacean/effects-core 2.8.0-alpha.5 → 2.8.0
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/asset-manager.d.ts +0 -1
- package/dist/{comp-vfx-item.d.ts → components/composition-component.d.ts} +4 -4
- package/dist/components/index.d.ts +1 -0
- package/dist/composition.d.ts +2 -2
- package/dist/downloader.d.ts +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +17117 -17177
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17118 -17174
- package/dist/index.mjs.map +1 -1
- package/dist/plugins/index.d.ts +0 -2
- package/dist/plugins/particle/particle-system.d.ts +1 -2
- package/dist/plugins/sprite/sprite-item.d.ts +4 -6
- package/dist/plugins/text/text-component-base.d.ts +2 -0
- package/dist/plugins/text/text-item.d.ts +11 -0
- package/dist/plugins/timeline/timeline-asset.d.ts +1 -1
- package/dist/render/index.d.ts +0 -1
- package/dist/utils/index.d.ts +0 -1
- package/dist/vfx-item.d.ts +2 -0
- package/package.json +2 -2
- package/dist/plugins/cal/calculate-loader.d.ts +0 -3
- package/dist/plugins/sprite/sprite-mesh.d.ts +0 -19
- package/dist/render/semantic-map.d.ts +0 -14
- package/dist/utils/hevc-video.d.ts +0 -13
package/dist/asset-manager.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { Ray } from '@galacean/effects-math/es/core/ray';
|
|
2
2
|
import type * as spec from '@galacean/effects-specification';
|
|
3
|
-
import {
|
|
4
|
-
import type {
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
3
|
+
import type { CompositionHitTestOptions } from '../composition';
|
|
4
|
+
import type { Region, TrackAsset } from '../plugins';
|
|
5
|
+
import { VFXItem } from '../vfx-item';
|
|
6
|
+
import { Component } from './component';
|
|
7
7
|
export interface SceneBinding {
|
|
8
8
|
key: TrackAsset;
|
|
9
9
|
value: VFXItem;
|
package/dist/composition.d.ts
CHANGED
|
@@ -2,7 +2,8 @@ import * as spec from '@galacean/effects-specification';
|
|
|
2
2
|
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
|
-
import {
|
|
5
|
+
import type { Component, PostProcessVolume } from './components';
|
|
6
|
+
import { CompositionComponent } from './components';
|
|
6
7
|
import type { EventSystem, Region } from './plugins';
|
|
7
8
|
import type { Renderer } from './render';
|
|
8
9
|
import { RenderFrame } from './render';
|
|
@@ -12,7 +13,6 @@ import type { Constructor, Disposable, LostHandler } from './utils';
|
|
|
12
13
|
import { VFXItem } from './vfx-item';
|
|
13
14
|
import type { CompositionEvent } from './events';
|
|
14
15
|
import { EventEmitter } from './events';
|
|
15
|
-
import type { Component, PostProcessVolume } from './components';
|
|
16
16
|
import { SceneTicking } from './composition/scene-ticking';
|
|
17
17
|
/**
|
|
18
18
|
* 合成统计信息
|
package/dist/downloader.d.ts
CHANGED
|
@@ -107,5 +107,5 @@ export declare function loadVideo(url: string | MediaProvider): Promise<HTMLVide
|
|
|
107
107
|
* @param loadFn
|
|
108
108
|
* @returns
|
|
109
109
|
*/
|
|
110
|
-
export declare function loadMedia(url: string | string[], loadFn: (url: string) => Promise<HTMLImageElement | HTMLVideoElement>): Promise<
|
|
110
|
+
export declare function loadMedia(url: string | string[], loadFn: (url: string) => Promise<HTMLImageElement | HTMLVideoElement>): Promise<HTMLImageElement | HTMLVideoElement>;
|
|
111
111
|
export {};
|
package/dist/index.d.ts
CHANGED