@galacean/effects-core 2.0.0-alpha.24 → 2.0.0-alpha.25

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.
@@ -59,6 +59,7 @@ export declare abstract class Material extends EffectsObject implements Disposab
59
59
  shaderSource: ShaderWithSource;
60
60
  stringTags: Record<string, string>;
61
61
  readonly uniformSemantics: Record<string, UniformSemantic>;
62
+ readonly enabledMacros: Record<string, number | boolean>;
62
63
  readonly renderType: MaterialRenderType;
63
64
  readonly name: string;
64
65
  readonly props: MaterialProps;
@@ -13,7 +13,7 @@ export declare class TimelineClip {
13
13
  start: number;
14
14
  duration: number;
15
15
  asset: PlayableAsset;
16
- endBehaviour: ItemEndBehavior;
16
+ endBehavior: ItemEndBehavior;
17
17
  constructor();
18
18
  toLocalTime(time: number): number;
19
19
  }
@@ -62,7 +62,6 @@ export declare class RuntimeClip {
62
62
  constructor(clip: TimelineClip, clipPlayable: Playable, parentMixer: Playable, track: TrackAsset);
63
63
  set enable(value: boolean);
64
64
  evaluateAt(localTime: number): void;
65
- private onClipEnd;
66
65
  }
67
66
  /**
68
67
  * @since 2.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/effects-core",
3
- "version": "2.0.0-alpha.24",
3
+ "version": "2.0.0-alpha.25",
4
4
  "description": "Galacean Effects runtime core for the web",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",