@galacean/effects-core 2.8.3 → 2.8.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.
@@ -1,4 +1,4 @@
1
- declare class LinkNode<T> {
1
+ export declare class LinkNode<T> {
2
2
  content: T;
3
3
  next: LinkNode<T> | null;
4
4
  pre: LinkNode<T> | null;
@@ -19,4 +19,3 @@ export declare class Link<T> {
19
19
  forEachReverse(func: (content: T, index: number) => void, thisObj?: any): void;
20
20
  getNodeByIndex(index: number): LinkNode<T> | null;
21
21
  }
22
- export {};
@@ -156,6 +156,7 @@ export declare class ParticleSystem extends Component implements Maskable {
156
156
  private upDirectionWorld;
157
157
  private uvs;
158
158
  private basicTransform;
159
+ private clickedPoint;
159
160
  constructor(engine: Engine, props?: ParticleSystemProps);
160
161
  get timePassed(): number;
161
162
  get lifetime(): number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@galacean/effects-core",
3
- "version": "2.8.3",
3
+ "version": "2.8.5",
4
4
  "description": "Galacean Effects runtime core for the web",
5
5
  "module": "./dist/index.mjs",
6
6
  "main": "./dist/index.js",