@galacean/engine-core 2.0.0-alpha.12 → 2.0.0-alpha.13

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": "2.0.0-alpha.12",
3
+ "version": "2.0.0-alpha.13",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -18,10 +18,10 @@
18
18
  "types/**/*"
19
19
  ],
20
20
  "dependencies": {
21
- "@galacean/engine-math": "2.0.0-alpha.12"
21
+ "@galacean/engine-math": "2.0.0-alpha.13"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "2.0.0-alpha.12"
24
+ "@galacean/engine-design": "2.0.0-alpha.13"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -23,11 +23,11 @@ export declare class MainModule implements ICustomClone {
23
23
  startDelay: ParticleCompositeCurve;
24
24
  /** A flag to enable 3D particle rotation, when disabled, only `startRotationZ` is used. */
25
25
  startRotation3D: boolean;
26
- /** The initial rotation of particles around the x-axis when emitted.*/
26
+ /** The initial rotation of particles around the x-axis when emitted, in degrees. */
27
27
  startRotationX: ParticleCompositeCurve;
28
- /** The initial rotation of particles around the y-axis when emitted. */
28
+ /** The initial rotation of particles around the y-axis when emitted, in degrees. */
29
29
  startRotationY: ParticleCompositeCurve;
30
- /** The initial rotation of particles around the z-axis when emitted. */
30
+ /** The initial rotation of particles around the z-axis when emitted, in degrees. */
31
31
  startRotationZ: ParticleCompositeCurve;
32
32
  /** Makes some particles spin in the opposite direction. */
33
33
  flipRotation: number;
@@ -20,11 +20,11 @@ export declare class RotationOverLifetimeModule extends ParticleGeneratorModule
20
20
  static readonly _maxCurveZProperty: ShaderProperty;
21
21
  /** Specifies whether the rotation is separate on each axis, when disabled, only `rotationZ` is used. */
22
22
  separateAxes: boolean;
23
- /** Rotation over lifetime for z axis. */
23
+ /** Rotation over lifetime for x axis, in degrees. */
24
24
  rotationX: ParticleCompositeCurve;
25
- /** Rotation over lifetime for z axis. */
25
+ /** Rotation over lifetime for y axis, in degrees. */
26
26
  rotationY: ParticleCompositeCurve;
27
- /** Rotation over lifetime for z axis. */
27
+ /** Rotation over lifetime for z axis, in degrees. */
28
28
  rotationZ: ParticleCompositeCurve;
29
29
  private _rotationMinConstant;
30
30
  private _rotationMaxConstant;