@galacean/engine-core 1.1.0-beta.6 → 1.1.0-beta.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/engine-core",
3
- "version": "1.1.0-beta.6",
3
+ "version": "1.1.0-beta.7",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -15,10 +15,10 @@
15
15
  "types/**/*"
16
16
  ],
17
17
  "dependencies": {
18
- "@galacean/engine-math": "1.1.0-beta.6"
18
+ "@galacean/engine-math": "1.1.0-beta.7"
19
19
  },
20
20
  "devDependencies": {
21
- "@galacean/engine-design": "1.1.0-beta.6"
21
+ "@galacean/engine-design": "1.1.0-beta.7"
22
22
  },
23
23
  "scripts": {
24
24
  "b:types": "tsc"
@@ -33,6 +33,12 @@ export declare class Background {
33
33
  */
34
34
  get texture(): Texture2D;
35
35
  set texture(value: Texture2D);
36
+ /**
37
+ * Background texture fill mode.
38
+ * @remarks When `mode` is `BackgroundMode.Texture`, the property will take effects.
39
+ * @defaultValue `BackgroundTextureFillMode.FitHeight`
40
+ */
41
+ get textureFillMode(): BackgroundTextureFillMode;
36
42
  set textureFillMode(value: BackgroundTextureFillMode);
37
43
  /**
38
44
  * Constructor of Background.
@@ -8,6 +8,15 @@ export { ParticleScaleMode } from "./enums/ParticleScaleMode";
8
8
  export { ParticleSimulationSpace } from "./enums/ParticleSimulationSpace";
9
9
  export { ParticleStopMode } from "./enums/ParticleStopMode";
10
10
  export { Burst } from "./modules/Burst";
11
+ export { ColorOverLifetimeModule } from "./modules/ColorOverLifetimeModule";
12
+ export { EmissionModule } from "./modules/EmissionModule";
13
+ export { MainModule } from "./modules/MainModule";
11
14
  export { ParticleCompositeCurve } from "./modules/ParticleCompositeCurve";
15
+ export { ParticleCompositeGradient } from "./modules/ParticleCompositeGradient";
12
16
  export { CurveKey, ParticleCurve } from "./modules/ParticleCurve";
17
+ export { GradientAlphaKey, GradientColorKey, ParticleGradient } from "./modules/ParticleGradient";
18
+ export { RotationOverLifetimeModule } from "./modules/RotationOverLifetimeModule";
19
+ export { SizeOverLifetimeModule } from "./modules/SizeOverLifetimeModule";
20
+ export { TextureSheetAnimationModule } from "./modules/TextureSheetAnimationModule";
21
+ export { VelocityOverLifetimeModule } from "./modules/VelocityOverLifetimeModule";
13
22
  export * from "./modules/shape/index";
@@ -7,6 +7,5 @@ export declare abstract class ParticleGeneratorModule {
7
7
  /** Specifies whether the module is enabled or not. */
8
8
  enabled: boolean;
9
9
  protected _generator: ParticleGenerator;
10
- constructor(generator: ParticleGenerator);
11
10
  protected _enableMacro(shaderData: ShaderData, lastEnableMacro: ShaderMacro, enableMacro: ShaderMacro): ShaderMacro;
12
11
  }