@galacean/engine-core 2.0.0-alpha.28 → 2.0.0-alpha.30
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/main.js +69 -22
- package/dist/main.js.map +1 -1
- package/dist/module.js +69 -22
- package/dist/module.js.map +1 -1
- package/package.json +3 -3
- package/types/particle/enums/ParticleScaleMode.d.ts +5 -5
- package/types/particle/modules/Burst.d.ts +21 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galacean/engine-core",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.30",
|
|
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.
|
|
21
|
+
"@galacean/engine-math": "2.0.0-alpha.30"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@galacean/engine-design": "2.0.0-alpha.
|
|
24
|
+
"@galacean/engine-design": "2.0.0-alpha.30"
|
|
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
|
|
6
|
-
|
|
7
|
-
/** Scale the Particle Generator using only its own transform 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
|
-
/**
|
|
10
|
-
|
|
9
|
+
/** Scale only the emitter shape positions; particle size and movement are unaffected. */
|
|
10
|
+
Shape = 2
|
|
11
11
|
}
|
|
@@ -5,10 +5,30 @@ import { ParticleCompositeCurve } from "./ParticleCompositeCurve";
|
|
|
5
5
|
export declare class Burst {
|
|
6
6
|
time: number;
|
|
7
7
|
count: ParticleCompositeCurve;
|
|
8
|
+
private _cycles;
|
|
9
|
+
private _repeatInterval;
|
|
8
10
|
/**
|
|
9
|
-
*
|
|
11
|
+
* Number of times to repeat the burst.
|
|
12
|
+
*/
|
|
13
|
+
get cycles(): number;
|
|
14
|
+
set cycles(value: number);
|
|
15
|
+
/**
|
|
16
|
+
* Time interval between each repeated burst.
|
|
17
|
+
*/
|
|
18
|
+
get repeatInterval(): number;
|
|
19
|
+
set repeatInterval(value: number);
|
|
20
|
+
/**
|
|
21
|
+
* Create a single-shot burst.
|
|
10
22
|
* @param time - Time to emit the burst
|
|
11
23
|
* @param count - Count of particles to emit
|
|
12
24
|
*/
|
|
13
25
|
constructor(time: number, count: ParticleCompositeCurve);
|
|
26
|
+
/**
|
|
27
|
+
* Create a repeated burst.
|
|
28
|
+
* @param time - Time to emit the burst
|
|
29
|
+
* @param count - Count of particles to emit
|
|
30
|
+
* @param cycles - Number of times to repeat the burst
|
|
31
|
+
* @param repeatInterval - Time interval between each repeated burst
|
|
32
|
+
*/
|
|
33
|
+
constructor(time: number, count: ParticleCompositeCurve, cycles: number, repeatInterval: number);
|
|
14
34
|
}
|