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.
- package/esm2022/lib/effect-composer.mjs +31 -41
- package/esm2022/lib/effect.mjs +6 -6
- package/esm2022/lib/effects/ascii.mjs +3 -3
- package/esm2022/lib/effects/bloom.mjs +3 -3
- package/esm2022/lib/effects/brightness-contrast.mjs +3 -3
- package/esm2022/lib/effects/chromatic-abberation.mjs +3 -3
- package/esm2022/lib/effects/color-average.mjs +3 -3
- package/esm2022/lib/effects/color-depth.mjs +3 -3
- package/esm2022/lib/effects/depth-of-field.mjs +8 -14
- package/esm2022/lib/effects/depth.mjs +3 -3
- package/esm2022/lib/effects/dot-screen.mjs +3 -3
- package/esm2022/lib/effects/fxaa.mjs +3 -3
- package/esm2022/lib/effects/glitch.mjs +13 -17
- package/esm2022/lib/effects/god-rays.mjs +8 -12
- package/esm2022/lib/effects/grid.mjs +10 -14
- package/esm2022/lib/effects/hue-saturation.mjs +3 -3
- package/esm2022/lib/effects/lens-flare.mjs +12 -16
- package/esm2022/lib/effects/lut.mjs +16 -20
- package/esm2022/lib/effects/noise.mjs +3 -3
- package/esm2022/lib/effects/outline.mjs +33 -30
- package/esm2022/lib/effects/pixelation.mjs +3 -3
- package/esm2022/lib/effects/scanline.mjs +3 -3
- package/esm2022/lib/effects/sepia.mjs +3 -3
- package/esm2022/lib/effects/shock-wave.mjs +3 -3
- package/esm2022/lib/effects/smaa.mjs +3 -3
- package/esm2022/lib/effects/tilt-shift-2.mjs +3 -3
- package/esm2022/lib/effects/tilt-shift.mjs +3 -3
- package/esm2022/lib/effects/vignette.mjs +3 -3
- package/esm2022/lib/effects/water.mjs +3 -3
- package/fesm2022/angular-three-postprocessing.mjs +183 -209
- package/fesm2022/angular-three-postprocessing.mjs.map +1 -1
- package/lib/effect-composer.d.ts +0 -4
- package/lib/effects/depth-of-field.d.ts +0 -1
- package/lib/effects/glitch.d.ts +0 -1
- package/lib/effects/god-rays.d.ts +0 -1
- package/lib/effects/grid.d.ts +0 -1
- package/lib/effects/lens-flare.d.ts +0 -1
- package/lib/effects/lut.d.ts +0 -1
- package/package.json +2 -2
package/lib/effect-composer.d.ts
CHANGED
|
@@ -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;
|
package/lib/effects/glitch.d.ts
CHANGED
|
@@ -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;
|
package/lib/effects/grid.d.ts
CHANGED
|
@@ -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>;
|
package/lib/effects/lut.d.ts
CHANGED
package/package.json
CHANGED