@soonspacejs/plugin-effect 2.11.9 → 2.11.10
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 +2 -7
- package/dist/index.esm.js +1 -1
- package/dist/water/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -4,8 +4,7 @@ import { ParticleCluster, ParticleClusterOptions } from '@three3d/particle';
|
|
|
4
4
|
export * from '@three3d/particle';
|
|
5
5
|
import { InnerCircleWaveOptions } from './circle-wave';
|
|
6
6
|
import { InnerCylinderWaveOptions } from './cylinder-wave';
|
|
7
|
-
import {
|
|
8
|
-
import { ISlot } from '@robotlegsjs/signals';
|
|
7
|
+
import { WaterOptions } from './water';
|
|
9
8
|
export interface FlameOptions extends PluginObjectInfo {
|
|
10
9
|
magnitude?: number;
|
|
11
10
|
gain?: number;
|
|
@@ -192,11 +191,7 @@ declare class EffectPlugin {
|
|
|
192
191
|
* @returns
|
|
193
192
|
*/
|
|
194
193
|
createBuilds(options: BuildsOptions): PluginObject;
|
|
195
|
-
removeEffect(id: PluginObjectInfo['id']): boolean;
|
|
196
|
-
waterMeshs: Map<string | number, WaterMesh>;
|
|
197
|
-
_waterUpdateHander: ISlot | null;
|
|
198
|
-
_waterAnimationHander: ISlot | null;
|
|
199
194
|
createWater(options: CreateWaterOptions): PluginObject;
|
|
200
|
-
|
|
195
|
+
removeEffect(id: PluginObjectInfo['id']): boolean;
|
|
201
196
|
}
|
|
202
197
|
export default EffectPlugin;
|