@soonspacejs/plugin-effect 2.13.17 → 2.14.0
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.d.ts +3 -4
- package/dist/index.esm.js +3319 -1
- package/dist/libs/SPE.d.ts +378 -0
- package/dist/smoke2/getParticleSystem.d.ts +5 -0
- package/dist/water/index.d.ts +1 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { Blending } from 'three';
|
|
2
|
-
import SoonSpace,
|
|
3
|
-
import type { PluginObject, PluginObjectInfo } from 'soonspacejs';
|
|
2
|
+
import { default as SoonSpace, IVector3, IColor, PluginObject, PluginObjectInfo } from 'soonspacejs';
|
|
4
3
|
import { ParticleClusterOptions } from '@three3d/particle';
|
|
5
|
-
export * from '@three3d/particle';
|
|
6
4
|
import { InnerCircleWaveOptions } from './circle-wave';
|
|
7
5
|
import { InnerCylinderWaveOptions } from './cylinder-wave';
|
|
8
6
|
import { WaterOptions } from './water';
|
|
7
|
+
export * from '@three3d/particle';
|
|
9
8
|
export interface FlameOptions extends PluginObjectInfo {
|
|
10
9
|
magnitude?: number;
|
|
11
10
|
gain?: number;
|
|
@@ -123,7 +122,7 @@ declare class EffectPlugin {
|
|
|
123
122
|
*/
|
|
124
123
|
readonly weatherPresetImgs: {
|
|
125
124
|
rain: string;
|
|
126
|
-
snow:
|
|
125
|
+
snow: string;
|
|
127
126
|
};
|
|
128
127
|
private _weatherId;
|
|
129
128
|
constructor(ssp: SoonSpace);
|