@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.
- package/dist/index.js +30 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -15
- package/dist/index.mjs.map +1 -1
- package/dist/plugins/particle/link.d.ts +1 -2
- package/dist/plugins/particle/particle-system.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|