@galacean/engine-core 2.0.0-alpha.28 → 2.0.0-alpha.29

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.28",
3
+ "version": "2.0.0-alpha.29",
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.28"
21
+ "@galacean/engine-math": "2.0.0-alpha.29"
22
22
  },
23
23
  "devDependencies": {
24
- "@galacean/engine-design": "2.0.0-alpha.28"
24
+ "@galacean/engine-design": "2.0.0-alpha.29"
25
25
  },
26
26
  "scripts": {
27
27
  "b:types": "tsc"
@@ -2,10 +2,10 @@
2
2
  * Control how Particle Generator apply transform scale.
3
3
  */
4
4
  export declare enum ParticleScaleMode {
5
- /** Scale the Particle Generator using the entire transform hierarchy. */
6
- Hierarchy = 0,
7
- /** Scale the Particle Generator using only its own transform scale. (Ignores parent scale). */
5
+ /** Scale the Particle Generator using the world scale, including all parent transforms. */
6
+ World = 0,
7
+ /** Scale the Particle Generator using only its own transform scale, ignoring parent scale. */
8
8
  Local = 1,
9
- /** Only apply transform scale to the shape component, which controls where particles are spawned, but does not affect their size or movement. */
10
- World = 2
9
+ /** Scale only the emitter shape positions; particle size and movement are unaffected. */
10
+ Shape = 2
11
11
  }