angular-three-postprocessing 2.2.0 → 2.2.1

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.
Files changed (39) hide show
  1. package/esm2022/lib/effect-composer.mjs +31 -41
  2. package/esm2022/lib/effect.mjs +6 -6
  3. package/esm2022/lib/effects/ascii.mjs +3 -3
  4. package/esm2022/lib/effects/bloom.mjs +3 -3
  5. package/esm2022/lib/effects/brightness-contrast.mjs +3 -3
  6. package/esm2022/lib/effects/chromatic-abberation.mjs +3 -3
  7. package/esm2022/lib/effects/color-average.mjs +3 -3
  8. package/esm2022/lib/effects/color-depth.mjs +3 -3
  9. package/esm2022/lib/effects/depth-of-field.mjs +8 -14
  10. package/esm2022/lib/effects/depth.mjs +3 -3
  11. package/esm2022/lib/effects/dot-screen.mjs +3 -3
  12. package/esm2022/lib/effects/fxaa.mjs +3 -3
  13. package/esm2022/lib/effects/glitch.mjs +13 -17
  14. package/esm2022/lib/effects/god-rays.mjs +8 -12
  15. package/esm2022/lib/effects/grid.mjs +10 -14
  16. package/esm2022/lib/effects/hue-saturation.mjs +3 -3
  17. package/esm2022/lib/effects/lens-flare.mjs +12 -16
  18. package/esm2022/lib/effects/lut.mjs +16 -20
  19. package/esm2022/lib/effects/noise.mjs +3 -3
  20. package/esm2022/lib/effects/outline.mjs +33 -30
  21. package/esm2022/lib/effects/pixelation.mjs +3 -3
  22. package/esm2022/lib/effects/scanline.mjs +3 -3
  23. package/esm2022/lib/effects/sepia.mjs +3 -3
  24. package/esm2022/lib/effects/shock-wave.mjs +3 -3
  25. package/esm2022/lib/effects/smaa.mjs +3 -3
  26. package/esm2022/lib/effects/tilt-shift-2.mjs +3 -3
  27. package/esm2022/lib/effects/tilt-shift.mjs +3 -3
  28. package/esm2022/lib/effects/vignette.mjs +3 -3
  29. package/esm2022/lib/effects/water.mjs +3 -3
  30. package/fesm2022/angular-three-postprocessing.mjs +183 -209
  31. package/fesm2022/angular-three-postprocessing.mjs.map +1 -1
  32. package/lib/effect-composer.d.ts +0 -4
  33. package/lib/effects/depth-of-field.d.ts +0 -1
  34. package/lib/effects/glitch.d.ts +0 -1
  35. package/lib/effects/god-rays.d.ts +0 -1
  36. package/lib/effects/grid.d.ts +0 -1
  37. package/lib/effects/lens-flare.d.ts +0 -1
  38. package/lib/effects/lut.d.ts +0 -1
  39. package/package.json +2 -2
@@ -19,7 +19,6 @@ export interface NgtpEffectComposerOptions {
19
19
  export declare class NgtpEffectComposer {
20
20
  options: import("@angular/core").InputSignalWithTransform<NgtpEffectComposerOptions, "" | Partial<NgtpEffectComposerOptions>>;
21
21
  private injector;
22
- private autoEffect;
23
22
  private store;
24
23
  private size;
25
24
  private gl;
@@ -40,9 +39,6 @@ export declare class NgtpEffectComposer {
40
39
  downSamplingPass: DepthDownsamplingPass | null;
41
40
  }>;
42
41
  constructor();
43
- private disableToneMapping;
44
- private setComposerSize;
45
- private updatePasses;
46
42
  static ɵfac: i0.ɵɵFactoryDeclaration<NgtpEffectComposer, never>;
47
43
  static ɵcmp: i0.ɵɵComponentDeclaration<NgtpEffectComposer, "ngtp-effect-composer", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
48
44
  }
@@ -10,7 +10,6 @@ type DOFOptions = NonNullable<ConstructorParameters<typeof DepthOfFieldEffect>[1
10
10
  };
11
11
  }>;
12
12
  export declare class NgtpDepthOfField {
13
- private autoEffect;
14
13
  private effectComposer;
15
14
  options: import("@angular/core").InputSignal<DOFOptions>;
16
15
  private autoFocus;
@@ -10,7 +10,6 @@ export type GlitchOptions = NonNullable<ConstructorParameters<typeof GlitchEffec
10
10
  strength: NgtVector2;
11
11
  }>;
12
12
  export declare class NgtpGlitch {
13
- private autoEffect;
14
13
  private store;
15
14
  private invalidate;
16
15
  options: import("@angular/core").InputSignalWithTransform<GlitchOptions, "" | Partial<{
@@ -3,7 +3,6 @@ import { GodRaysEffect } from 'postprocessing';
3
3
  import { Mesh, Points } from 'three';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class NgtpGodRays {
6
- private autoEffect;
7
6
  private effectComposer;
8
7
  options: import("@angular/core").InputSignal<{
9
8
  blendFunction?: import("postprocessing").BlendFunction;
@@ -7,7 +7,6 @@ type GridOptions = NonNullable<ConstructorParameters<typeof GridEffect>[0]> & Pa
7
7
  };
8
8
  }>;
9
9
  export declare class NgtpGrid {
10
- private autoEffect;
11
10
  options: import("@angular/core").InputSignal<GridOptions>;
12
11
  private size;
13
12
  effect: import("@angular/core").Signal<GridEffect>;
@@ -32,7 +32,6 @@ export type LensFlareOptions = ConstructorParameters<typeof LensFlareEffect>[0]
32
32
  smoothTime: number;
33
33
  };
34
34
  export declare class NgtpLensFlare {
35
- private autoEffect;
36
35
  private store;
37
36
  private viewport;
38
37
  private raycaster;
@@ -7,7 +7,6 @@ export interface LUTOptions {
7
7
  tetrahedralInterpolation?: boolean;
8
8
  }
9
9
  export declare class NgtpLUT {
10
- private autoEffect;
11
10
  private store;
12
11
  private invalidate;
13
12
  options: import("@angular/core").InputSignal<LUTOptions>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three-postprocessing",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -50,4 +50,4 @@
50
50
  "default": "./fesm2022/angular-three-postprocessing.mjs"
51
51
  }
52
52
  }
53
- }
53
+ }