@soonspacejs/plugin-effect 2.11.9 → 2.11.11

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 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 { WaterMesh, WaterOptions } from './water/index';
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
- removeWater(id: PluginObjectInfo['id']): boolean;
195
+ removeEffect(id: PluginObjectInfo['id']): boolean;
201
196
  }
202
197
  export default EffectPlugin;