@galacean/effects-core 2.0.4 → 2.0.5
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.js +20 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -23
- package/dist/index.mjs.map +1 -1
- package/dist/plugins/cal/playable-graph.d.ts +0 -1
- package/dist/plugins/cal/timeline-asset.d.ts +2 -5
- package/dist/plugins/particle/burst.d.ts +2 -0
- package/package.json +1 -1
|
@@ -22,7 +22,6 @@ export declare class PlayableGraph {
|
|
|
22
22
|
export declare class Playable implements Disposable {
|
|
23
23
|
onPlayablePlayFlag: boolean;
|
|
24
24
|
onPlayablePauseFlag: boolean;
|
|
25
|
-
overrideTimeNextEvaluation: boolean;
|
|
26
25
|
private destroyed;
|
|
27
26
|
private inputs;
|
|
28
27
|
private inputOuputPorts;
|
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as spec from '@galacean/effects-specification';
|
|
2
2
|
import type { RuntimeClip, TrackAsset } from '../timeline/track';
|
|
3
3
|
import type { FrameContext, PlayableGraph } from './playable-graph';
|
|
4
4
|
import { Playable, PlayableAsset } from './playable-graph';
|
|
5
5
|
import type { Constructor } from '../../utils';
|
|
6
|
-
export interface TimelineAssetData extends EffectsObjectData {
|
|
7
|
-
tracks: DataPath[];
|
|
8
|
-
}
|
|
9
6
|
export declare class TimelineAsset extends PlayableAsset {
|
|
10
7
|
tracks: TrackAsset[];
|
|
11
8
|
createPlayable(graph: PlayableGraph): Playable;
|
|
12
9
|
createTrack<T extends TrackAsset>(classConstructor: Constructor<T>, parent: TrackAsset, name?: string): T;
|
|
13
|
-
fromData(data: TimelineAssetData): void;
|
|
10
|
+
fromData(data: spec.TimelineAssetData): void;
|
|
14
11
|
}
|
|
15
12
|
export declare class TimelinePlayable extends Playable {
|
|
16
13
|
clips: RuntimeClip[];
|