@galacean/effects-core 1.1.4 → 1.1.5
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/composition.d.ts +15 -2
- package/dist/index.js +44 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44 -16
- package/dist/index.mjs.map +1 -1
- package/dist/plugins/particle/particle-system.d.ts +1 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as spec from '@galacean/effects-specification';
|
|
2
2
|
import type { vec2, vec3, vec4 } from '@galacean/effects-specification';
|
|
3
3
|
import type { Ray } from '@galacean/effects-math/es/core/index';
|
|
4
|
-
import { Vector3
|
|
4
|
+
import { Vector3 } from '@galacean/effects-math/es/core/index';
|
|
5
5
|
import type { ValueGetter } from '../../math';
|
|
6
6
|
import type { ShapeGenerator } from '../../shape';
|
|
7
7
|
import { Texture } from '../../texture';
|
|
@@ -134,7 +134,6 @@ export interface ParticleTrailProps extends Omit<spec.ParticleTrail, 'texture'>
|
|
|
134
134
|
export type ParticleContent = [number, number, number, Point];
|
|
135
135
|
export declare class ParticleSystem {
|
|
136
136
|
reusable: boolean;
|
|
137
|
-
renderMatrix: Matrix4;
|
|
138
137
|
particleMesh: ParticleMesh;
|
|
139
138
|
trailMesh?: TrailMesh;
|
|
140
139
|
options: ParticleOptions;
|