angular-three-postprocessing 2.0.0-beta.3 → 2.0.0-beta.300
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/README.md +56 -4
- package/esm2022/index.mjs +4 -3
- package/esm2022/lib/effect-composer.mjs +188 -0
- package/esm2022/lib/effect.mjs +50 -0
- package/esm2022/lib/effects/ascii.mjs +120 -0
- package/esm2022/lib/effects/bloom.mjs +39 -0
- package/esm2022/lib/effects/brightness-contrast.mjs +38 -0
- package/esm2022/lib/effects/chromatic-abberation.mjs +38 -0
- package/esm2022/lib/effects/color-average.mjs +33 -0
- package/esm2022/lib/effects/color-depth.mjs +38 -0
- package/esm2022/lib/effects/depth-of-field.mjs +56 -0
- package/esm2022/lib/effects/depth.mjs +38 -0
- package/esm2022/lib/effects/dot-screen.mjs +38 -0
- package/esm2022/lib/effects/fxaa.mjs +38 -0
- package/esm2022/lib/effects/glitch.mjs +63 -0
- package/esm2022/lib/effects/god-rays.mjs +41 -0
- package/esm2022/lib/effects/grid.mjs +42 -0
- package/esm2022/lib/effects/hue-saturation.mjs +38 -0
- package/esm2022/lib/effects/index.mjs +28 -0
- package/esm2022/lib/effects/lens-flare.mjs +195 -0
- package/esm2022/lib/effects/lut.mjs +50 -0
- package/esm2022/lib/effects/noise.mjs +39 -0
- package/esm2022/lib/effects/outline.mjs +143 -0
- package/esm2022/lib/effects/pixelation.mjs +30 -0
- package/esm2022/lib/effects/scanline.mjs +43 -0
- package/esm2022/lib/effects/sepia.mjs +38 -0
- package/esm2022/lib/effects/shock-wave.mjs +38 -0
- package/esm2022/lib/effects/smaa.mjs +38 -0
- package/esm2022/lib/effects/tilt-shift-2.mjs +121 -0
- package/esm2022/lib/effects/tilt-shift.mjs +39 -0
- package/esm2022/lib/effects/vignette.mjs +38 -0
- package/esm2022/lib/effects/water.mjs +64 -0
- package/fesm2022/angular-three-postprocessing.mjs +1557 -266
- package/fesm2022/angular-three-postprocessing.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/lib/effect-composer.d.ts +48 -0
- package/lib/effect.d.ts +56 -0
- package/lib/effects/ascii.d.ts +23 -0
- package/lib/effects/bloom.d.ts +10 -0
- package/lib/effects/brightness-contrast.d.ts +15 -0
- package/lib/effects/chromatic-abberation.d.ts +16 -0
- package/lib/effects/color-average.d.ts +11 -0
- package/lib/effects/color-depth.d.ts +14 -0
- package/lib/effects/depth-of-field.d.ts +22 -0
- package/lib/effects/depth.d.ts +14 -0
- package/lib/effects/dot-screen.d.ts +15 -0
- package/lib/effects/fxaa.d.ts +13 -0
- package/lib/effects/glitch.d.ts +29 -0
- package/lib/effects/god-rays.d.ts +30 -0
- package/lib/effects/grid.d.ts +18 -0
- package/lib/effects/hue-saturation.d.ts +15 -0
- package/lib/effects/index.d.ts +27 -0
- package/lib/effects/lens-flare.d.ts +96 -0
- package/lib/effects/lut.d.ts +19 -0
- package/lib/effects/noise.d.ts +14 -0
- package/lib/effects/outline.d.ts +74 -0
- package/lib/effects/pixelation.d.ts +16 -0
- package/lib/effects/scanline.d.ts +17 -0
- package/lib/effects/sepia.d.ts +14 -0
- package/lib/effects/shock-wave.d.ts +11 -0
- package/lib/effects/smaa.d.ts +15 -0
- package/lib/effects/tilt-shift-2.d.ts +35 -0
- package/lib/effects/tilt-shift.d.ts +22 -0
- package/lib/effects/vignette.d.ts +17 -0
- package/lib/effects/water.d.ts +20 -0
- package/package.json +13 -19
- package/effect-composer.d.ts +0 -53
- package/effect.d.ts +0 -24
- package/effects/README.md +0 -3
- package/effects/bloom/bloom.d.ts +0 -8
- package/effects/brightness-contrast/brightness-contrast.d.ts +0 -7
- package/effects/color-depth/color-depth.d.ts +0 -7
- package/effects/depth/depth.d.ts +0 -7
- package/effects/dot-screen/dot-screen.d.ts +0 -7
- package/effects/hue-saturation/hue-saturation.d.ts +0 -7
- package/effects/index.d.ts +0 -16
- package/effects/lut/lut.d.ts +0 -19
- package/effects/noise/noise.d.ts +0 -8
- package/effects/scanline/scanline.d.ts +0 -8
- package/effects/sepia/sepia.d.ts +0 -7
- package/effects/shock-wave/shock-wave.d.ts +0 -7
- package/effects/smaa/smaa.d.ts +0 -7
- package/effects/ssao/ssao.d.ts +0 -38
- package/effects/tilt-shift/tilt-shift.d.ts +0 -8
- package/effects/tone-mapping/tone-mapping.d.ts +0 -7
- package/effects/vignette/vignette.d.ts +0 -7
- package/esm2022/effect-composer.mjs +0 -242
- package/esm2022/effect.mjs +0 -79
- package/esm2022/effects/angular-three-postprocessing-effects.mjs +0 -5
- package/esm2022/effects/bloom/bloom.mjs +0 -34
- package/esm2022/effects/brightness-contrast/brightness-contrast.mjs +0 -30
- package/esm2022/effects/color-depth/color-depth.mjs +0 -30
- package/esm2022/effects/depth/depth.mjs +0 -30
- package/esm2022/effects/dot-screen/dot-screen.mjs +0 -30
- package/esm2022/effects/hue-saturation/hue-saturation.mjs +0 -30
- package/esm2022/effects/index.mjs +0 -17
- package/esm2022/effects/lut/lut.mjs +0 -77
- package/esm2022/effects/noise/noise.mjs +0 -34
- package/esm2022/effects/scanline/scanline.mjs +0 -34
- package/esm2022/effects/sepia/sepia.mjs +0 -30
- package/esm2022/effects/shock-wave/shock-wave.mjs +0 -30
- package/esm2022/effects/smaa/smaa.mjs +0 -30
- package/esm2022/effects/ssao/ssao.mjs +0 -189
- package/esm2022/effects/tilt-shift/tilt-shift.mjs +0 -34
- package/esm2022/effects/tone-mapping/tone-mapping.mjs +0 -30
- package/esm2022/effects/vignette/vignette.mjs +0 -30
- package/fesm2022/angular-three-postprocessing-effects.mjs +0 -619
- package/fesm2022/angular-three-postprocessing-effects.mjs.map +0 -1
- package/plugin/README.md +0 -11
- package/plugin/generators.json +0 -19
- package/plugin/package.json +0 -9
- package/plugin/src/generators/init/compat.d.ts +0 -2
- package/plugin/src/generators/init/compat.js +0 -6
- package/plugin/src/generators/init/compat.js.map +0 -1
- package/plugin/src/generators/init/init.d.ts +0 -4
- package/plugin/src/generators/init/init.js +0 -22
- package/plugin/src/generators/init/init.js.map +0 -1
- package/plugin/src/generators/init/schema.json +0 -6
- package/plugin/src/index.d.ts +0 -1
- package/plugin/src/index.js +0 -6
- package/plugin/src/index.js.map +0 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { DepthEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type DepthEffectOptions = Partial<NonNullable<ConstructorParameters<typeof DepthEffect>[0]>>;
|
|
6
|
+
export declare class NgtpDepth {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
inverted?: boolean;
|
|
11
|
+
}>, "blendFunction">>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpDepth, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpDepth, "ngtp-depth", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DotScreenEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type DotScreenEffectOptions = Partial<NonNullable<ConstructorParameters<typeof DotScreenEffect>[0]>>;
|
|
6
|
+
export declare class NgtpDotScreen {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
angle?: number;
|
|
11
|
+
scale?: number;
|
|
12
|
+
}>, "blendFunction">>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpDotScreen, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpDotScreen, "ngtp-dot-screen", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FXAAEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type FXAAEffectOptions = Partial<NonNullable<ConstructorParameters<typeof FXAAEffect>[0]>>;
|
|
6
|
+
export declare class NgtpFXAA {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
}>, "blendFunction">>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpFXAA, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpFXAA, "ngtp-fxaa", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { NgtVector2 } from 'angular-three';
|
|
2
|
+
import { GlitchEffect, GlitchMode } from 'postprocessing';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export type GlitchOptions = NonNullable<ConstructorParameters<typeof GlitchEffect>[0]> & Partial<{
|
|
5
|
+
mode: GlitchMode;
|
|
6
|
+
active: boolean;
|
|
7
|
+
delay: NgtVector2;
|
|
8
|
+
duration: NgtVector2;
|
|
9
|
+
chromaticAberrationOffset: NgtVector2;
|
|
10
|
+
strength: NgtVector2;
|
|
11
|
+
}>;
|
|
12
|
+
export declare class NgtpGlitch {
|
|
13
|
+
private autoEffect;
|
|
14
|
+
private store;
|
|
15
|
+
private invalidate;
|
|
16
|
+
options: import("@angular/core").InputSignalWithTransform<GlitchOptions, "" | Partial<{
|
|
17
|
+
active: boolean;
|
|
18
|
+
}>>;
|
|
19
|
+
private active;
|
|
20
|
+
private mode;
|
|
21
|
+
private delay;
|
|
22
|
+
private duration;
|
|
23
|
+
private chromaticAberrationOffset;
|
|
24
|
+
private strength;
|
|
25
|
+
effect: import("@angular/core").Signal<GlitchEffect>;
|
|
26
|
+
constructor();
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpGlitch, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpGlitch, "ngtp-glitch", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { GodRaysEffect } from 'postprocessing';
|
|
3
|
+
import { Mesh, Points } from 'three';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class NgtpGodRays {
|
|
6
|
+
private autoEffect;
|
|
7
|
+
private effectComposer;
|
|
8
|
+
options: import("@angular/core").InputSignal<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
samples?: number;
|
|
11
|
+
density?: number;
|
|
12
|
+
decay?: number;
|
|
13
|
+
weight?: number;
|
|
14
|
+
exposure?: number;
|
|
15
|
+
clampMax?: number;
|
|
16
|
+
resolutionScale?: number;
|
|
17
|
+
resolutionX?: number;
|
|
18
|
+
resolutionY?: number;
|
|
19
|
+
width?: number;
|
|
20
|
+
height?: number;
|
|
21
|
+
kernelSize?: import("postprocessing").KernelSize;
|
|
22
|
+
blur?: boolean;
|
|
23
|
+
} & {
|
|
24
|
+
sun: Mesh | Points | ElementRef<Mesh | Points>;
|
|
25
|
+
}>;
|
|
26
|
+
effect: import("@angular/core").Signal<GodRaysEffect>;
|
|
27
|
+
constructor();
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpGodRays, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpGodRays, "ngtp-god-rays", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { GridEffect } from 'postprocessing';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
type GridOptions = NonNullable<ConstructorParameters<typeof GridEffect>[0]> & Partial<{
|
|
4
|
+
size: {
|
|
5
|
+
width: number;
|
|
6
|
+
height: number;
|
|
7
|
+
};
|
|
8
|
+
}>;
|
|
9
|
+
export declare class NgtpGrid {
|
|
10
|
+
private autoEffect;
|
|
11
|
+
options: import("@angular/core").InputSignal<GridOptions>;
|
|
12
|
+
private size;
|
|
13
|
+
effect: import("@angular/core").Signal<GridEffect>;
|
|
14
|
+
constructor();
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpGrid, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpGrid, "ngtp-grid", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HueSaturationEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type HueSaturationEffectOptions = Partial<NonNullable<ConstructorParameters<typeof HueSaturationEffect>[0]>>;
|
|
6
|
+
export declare class NgtpHueSaturation {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
hue?: number;
|
|
11
|
+
saturation?: number;
|
|
12
|
+
}>, "blendFunction">>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpHueSaturation, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpHueSaturation, "ngtp-hue-saturation", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export * from './ascii';
|
|
2
|
+
export * from './bloom';
|
|
3
|
+
export * from './brightness-contrast';
|
|
4
|
+
export * from './chromatic-abberation';
|
|
5
|
+
export * from './color-average';
|
|
6
|
+
export * from './color-depth';
|
|
7
|
+
export * from './depth';
|
|
8
|
+
export * from './depth-of-field';
|
|
9
|
+
export * from './dot-screen';
|
|
10
|
+
export * from './fxaa';
|
|
11
|
+
export * from './glitch';
|
|
12
|
+
export * from './god-rays';
|
|
13
|
+
export * from './grid';
|
|
14
|
+
export * from './hue-saturation';
|
|
15
|
+
export * from './lens-flare';
|
|
16
|
+
export * from './lut';
|
|
17
|
+
export * from './noise';
|
|
18
|
+
export * from './outline';
|
|
19
|
+
export * from './pixelation';
|
|
20
|
+
export * from './scanline';
|
|
21
|
+
export * from './sepia';
|
|
22
|
+
export * from './shock-wave';
|
|
23
|
+
export * from './smaa';
|
|
24
|
+
export * from './tilt-shift';
|
|
25
|
+
export * from './tilt-shift-2';
|
|
26
|
+
export * from './vignette';
|
|
27
|
+
export * from './water';
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { BlendFunction, Effect } from 'postprocessing';
|
|
2
|
+
import { Color, Texture, Vector3, WebGLRenderTarget, WebGLRenderer } from 'three';
|
|
3
|
+
import { NgtpEffectComposer } from '../effect-composer';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LensFlareEffect extends Effect {
|
|
6
|
+
constructor({ blendFunction, enabled, glareSize, lensPosition, iResolution, starPoints, flareSize, flareSpeed, flareShape, animated, anamorphic, colorGain, lensDirtTexture, haloScale, secondaryGhosts, aditionalStreaks, ghostScale, opacity, starBurst, }?: {
|
|
7
|
+
blendFunction?: BlendFunction | undefined;
|
|
8
|
+
enabled?: boolean | undefined;
|
|
9
|
+
glareSize?: number | undefined;
|
|
10
|
+
lensPosition?: number[] | undefined;
|
|
11
|
+
iResolution?: number[] | undefined;
|
|
12
|
+
starPoints?: number | undefined;
|
|
13
|
+
flareSize?: number | undefined;
|
|
14
|
+
flareSpeed?: number | undefined;
|
|
15
|
+
flareShape?: number | undefined;
|
|
16
|
+
animated?: boolean | undefined;
|
|
17
|
+
anamorphic?: boolean | undefined;
|
|
18
|
+
colorGain?: Color | undefined;
|
|
19
|
+
lensDirtTexture?: Texture | null | undefined;
|
|
20
|
+
haloScale?: number | undefined;
|
|
21
|
+
secondaryGhosts?: boolean | undefined;
|
|
22
|
+
aditionalStreaks?: boolean | undefined;
|
|
23
|
+
ghostScale?: number | undefined;
|
|
24
|
+
opacity?: number | undefined;
|
|
25
|
+
starBurst?: boolean | undefined;
|
|
26
|
+
});
|
|
27
|
+
update(_renderer: WebGLRenderer, _inputBuffer: WebGLRenderTarget, deltaTime: number): void;
|
|
28
|
+
}
|
|
29
|
+
export type LensFlareOptions = ConstructorParameters<typeof LensFlareEffect>[0] & {
|
|
30
|
+
position: Vector3;
|
|
31
|
+
followMouse: boolean;
|
|
32
|
+
smoothTime: number;
|
|
33
|
+
};
|
|
34
|
+
export declare class NgtpLensFlare {
|
|
35
|
+
private autoEffect;
|
|
36
|
+
private store;
|
|
37
|
+
private viewport;
|
|
38
|
+
private raycaster;
|
|
39
|
+
private pointer;
|
|
40
|
+
effectComposer: NgtpEffectComposer;
|
|
41
|
+
options: import("@angular/core").InputSignalWithTransform<{
|
|
42
|
+
blendFunction?: BlendFunction | undefined;
|
|
43
|
+
enabled?: boolean | undefined;
|
|
44
|
+
glareSize?: number | undefined;
|
|
45
|
+
lensPosition?: number[] | undefined;
|
|
46
|
+
iResolution?: number[] | undefined;
|
|
47
|
+
starPoints?: number | undefined;
|
|
48
|
+
flareSize?: number | undefined;
|
|
49
|
+
flareSpeed?: number | undefined;
|
|
50
|
+
flareShape?: number | undefined;
|
|
51
|
+
animated?: boolean | undefined;
|
|
52
|
+
anamorphic?: boolean | undefined;
|
|
53
|
+
colorGain?: Color | undefined;
|
|
54
|
+
lensDirtTexture?: Texture | null | undefined;
|
|
55
|
+
haloScale?: number | undefined;
|
|
56
|
+
secondaryGhosts?: boolean | undefined;
|
|
57
|
+
aditionalStreaks?: boolean | undefined;
|
|
58
|
+
ghostScale?: number | undefined;
|
|
59
|
+
opacity?: number | undefined;
|
|
60
|
+
starBurst?: boolean | undefined;
|
|
61
|
+
} & {
|
|
62
|
+
position: Vector3;
|
|
63
|
+
followMouse: boolean;
|
|
64
|
+
smoothTime: number;
|
|
65
|
+
}, "" | Partial<{
|
|
66
|
+
blendFunction?: BlendFunction | undefined;
|
|
67
|
+
enabled?: boolean | undefined;
|
|
68
|
+
glareSize?: number | undefined;
|
|
69
|
+
lensPosition?: number[] | undefined;
|
|
70
|
+
iResolution?: number[] | undefined;
|
|
71
|
+
starPoints?: number | undefined;
|
|
72
|
+
flareSize?: number | undefined;
|
|
73
|
+
flareSpeed?: number | undefined;
|
|
74
|
+
flareShape?: number | undefined;
|
|
75
|
+
animated?: boolean | undefined;
|
|
76
|
+
anamorphic?: boolean | undefined;
|
|
77
|
+
colorGain?: Color | undefined;
|
|
78
|
+
lensDirtTexture?: Texture | null | undefined;
|
|
79
|
+
haloScale?: number | undefined;
|
|
80
|
+
secondaryGhosts?: boolean | undefined;
|
|
81
|
+
aditionalStreaks?: boolean | undefined;
|
|
82
|
+
ghostScale?: number | undefined;
|
|
83
|
+
opacity?: number | undefined;
|
|
84
|
+
starBurst?: boolean | undefined;
|
|
85
|
+
} & {
|
|
86
|
+
position: Vector3;
|
|
87
|
+
followMouse: boolean;
|
|
88
|
+
smoothTime: number;
|
|
89
|
+
}>>;
|
|
90
|
+
private projectedPosition;
|
|
91
|
+
private mouse2d;
|
|
92
|
+
effect: import("@angular/core").Signal<LensFlareEffect>;
|
|
93
|
+
constructor();
|
|
94
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpLensFlare, never>;
|
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpLensFlare, "ngtp-lens-flare", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
96
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BlendFunction, LUT3DEffect } from 'postprocessing';
|
|
2
|
+
import { Texture } from 'three';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface LUTOptions {
|
|
5
|
+
lut: Texture;
|
|
6
|
+
blendFunction?: BlendFunction;
|
|
7
|
+
tetrahedralInterpolation?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare class NgtpLUT {
|
|
10
|
+
private autoEffect;
|
|
11
|
+
private store;
|
|
12
|
+
private invalidate;
|
|
13
|
+
options: import("@angular/core").InputSignal<LUTOptions>;
|
|
14
|
+
private lut;
|
|
15
|
+
effect: import("@angular/core").Signal<LUT3DEffect>;
|
|
16
|
+
constructor();
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpLUT, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpLUT, "ngtp-lut", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { BlendFunction, NoiseEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type NoiseEffectOptions = Partial<NonNullable<ConstructorParameters<typeof NoiseEffect>[0]>>;
|
|
6
|
+
export declare class NgtpNoise {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: BlendFunction;
|
|
10
|
+
premultiply?: boolean;
|
|
11
|
+
}>, "blendFunction">>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpNoise, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpNoise, "ngtp-noise", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { OutlineEffect } from 'postprocessing';
|
|
3
|
+
import { Object3D } from 'three';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export type NgtpOutlineOptions = ConstructorParameters<typeof OutlineEffect>[2] & {
|
|
6
|
+
selection?: Array<Object3D | ElementRef<Object3D>>;
|
|
7
|
+
selectionLayer: number;
|
|
8
|
+
};
|
|
9
|
+
export declare class NgtpOutline {
|
|
10
|
+
options: import("@angular/core").InputSignalWithTransform<{
|
|
11
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
12
|
+
patternTexture?: import("three").Texture;
|
|
13
|
+
patternScale?: number;
|
|
14
|
+
edgeStrength?: number;
|
|
15
|
+
pulseSpeed?: number;
|
|
16
|
+
visibleEdgeColor?: number;
|
|
17
|
+
hiddenEdgeColor?: number;
|
|
18
|
+
multisampling?: number;
|
|
19
|
+
resolutionScale?: number;
|
|
20
|
+
resolutionX?: number;
|
|
21
|
+
resolutionY?: number;
|
|
22
|
+
width?: number;
|
|
23
|
+
height?: number;
|
|
24
|
+
kernelSize?: import("postprocessing").KernelSize;
|
|
25
|
+
blur?: boolean;
|
|
26
|
+
xRay?: boolean;
|
|
27
|
+
} & {
|
|
28
|
+
selection?: Array<Object3D | ElementRef<Object3D>>;
|
|
29
|
+
selectionLayer: number;
|
|
30
|
+
}, "" | Partial<{
|
|
31
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
32
|
+
patternTexture?: import("three").Texture;
|
|
33
|
+
patternScale?: number;
|
|
34
|
+
edgeStrength?: number;
|
|
35
|
+
pulseSpeed?: number;
|
|
36
|
+
visibleEdgeColor?: number;
|
|
37
|
+
hiddenEdgeColor?: number;
|
|
38
|
+
multisampling?: number;
|
|
39
|
+
resolutionScale?: number;
|
|
40
|
+
resolutionX?: number;
|
|
41
|
+
resolutionY?: number;
|
|
42
|
+
width?: number;
|
|
43
|
+
height?: number;
|
|
44
|
+
kernelSize?: import("postprocessing").KernelSize;
|
|
45
|
+
blur?: boolean;
|
|
46
|
+
xRay?: boolean;
|
|
47
|
+
} & {
|
|
48
|
+
selection?: Array<Object3D | ElementRef<Object3D>>;
|
|
49
|
+
selectionLayer: number;
|
|
50
|
+
}>>;
|
|
51
|
+
private ngtSelection;
|
|
52
|
+
private effectComposer;
|
|
53
|
+
private store;
|
|
54
|
+
private invalidate;
|
|
55
|
+
private selection;
|
|
56
|
+
private selectionLayer;
|
|
57
|
+
private blendFunction;
|
|
58
|
+
private patternTexture;
|
|
59
|
+
private edgeStrength;
|
|
60
|
+
private pulseSpeed;
|
|
61
|
+
private visibleEdgeColor;
|
|
62
|
+
private hiddenEdgeColor;
|
|
63
|
+
private width;
|
|
64
|
+
private height;
|
|
65
|
+
private kernelSize;
|
|
66
|
+
private blur;
|
|
67
|
+
private xRay;
|
|
68
|
+
private restOptions;
|
|
69
|
+
effect: import("@angular/core").Signal<OutlineEffect>;
|
|
70
|
+
constructor();
|
|
71
|
+
private handleSelectionChangeEffect;
|
|
72
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpOutline, never>;
|
|
73
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpOutline, "ngtp-outline", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PixelationEffect } from 'postprocessing';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface PixelationOptions {
|
|
4
|
+
granularity: number;
|
|
5
|
+
}
|
|
6
|
+
export declare class NgtpPixelation {
|
|
7
|
+
options: import("@angular/core").InputSignalWithTransform<{
|
|
8
|
+
granularity: number;
|
|
9
|
+
}, "" | Partial<{
|
|
10
|
+
granularity: number;
|
|
11
|
+
}>>;
|
|
12
|
+
private granularity;
|
|
13
|
+
effect: import("@angular/core").Signal<PixelationEffect>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpPixelation, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpPixelation, "ngtp-pixelation", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BlendFunction, ScanlineEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type ScanlineEffectOptions = Partial<NonNullable<ConstructorParameters<typeof ScanlineEffect>[0]>>;
|
|
6
|
+
export declare class NgtpScanline {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignalWithTransform<Omit<Partial<{
|
|
9
|
+
blendFunction?: BlendFunction;
|
|
10
|
+
density?: number;
|
|
11
|
+
}>, "blendFunction">, "" | Partial<Omit<Partial<{
|
|
12
|
+
blendFunction?: BlendFunction;
|
|
13
|
+
density?: number;
|
|
14
|
+
}>, "blendFunction">>>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpScanline, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpScanline, "ngtp-scanline", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SepiaEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type SepiaEffectOptions = Partial<NonNullable<ConstructorParameters<typeof SepiaEffect>[0]>>;
|
|
6
|
+
export declare class NgtpSepia {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
intensity?: number;
|
|
11
|
+
}>, "blendFunction">>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSepia, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSepia, "ngtp-sepia", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ShockWaveEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type ShockWaveEffectOptions = Partial<NonNullable<ConstructorParameters<typeof ShockWaveEffect>[0]>>;
|
|
6
|
+
export declare class NgtpShockWave {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<import("three").Camera>, "blendFunction">>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpShockWave, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpShockWave, "ngtp-shock-wave", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { SMAAEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type SMAAEffectOptions = Partial<NonNullable<ConstructorParameters<typeof SMAAEffect>[0]>>;
|
|
6
|
+
export declare class NgtpSMAA {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
preset?: import("postprocessing").SMAAPreset;
|
|
10
|
+
edgeDetectionMode?: import("postprocessing").EdgeDetectionMode;
|
|
11
|
+
predicationMode?: import("postprocessing").PredicationMode;
|
|
12
|
+
}>, "blendFunction">>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSMAA, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSMAA, "ngtp-smaa", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { BlendFunction, Effect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export declare class TiltShift2Effect extends Effect {
|
|
6
|
+
constructor({ blendFunction, blur, // [0, 1], can go beyond 1 for extra
|
|
7
|
+
taper, // [0, 1], can go beyond 1 for extra
|
|
8
|
+
start, // [0,1] percentage x,y of screenspace
|
|
9
|
+
end, // [0,1] percentage x,y of screenspace
|
|
10
|
+
samples, // number of blur samples
|
|
11
|
+
direction, }?: {
|
|
12
|
+
blendFunction?: BlendFunction | undefined;
|
|
13
|
+
blur?: number | undefined;
|
|
14
|
+
taper?: number | undefined;
|
|
15
|
+
start?: number[] | undefined;
|
|
16
|
+
end?: number[] | undefined;
|
|
17
|
+
samples?: number | undefined;
|
|
18
|
+
direction?: number[] | undefined;
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
export type TiltShift2EffectOptions = Partial<NonNullable<ConstructorParameters<typeof TiltShift2Effect>[0]>>;
|
|
22
|
+
export declare class NgtpTiltShift2 {
|
|
23
|
+
effect: NgtpEffect;
|
|
24
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
25
|
+
blendFunction?: BlendFunction | undefined;
|
|
26
|
+
blur?: number | undefined;
|
|
27
|
+
taper?: number | undefined;
|
|
28
|
+
start?: number[] | undefined;
|
|
29
|
+
end?: number[] | undefined;
|
|
30
|
+
samples?: number | undefined;
|
|
31
|
+
direction?: number[] | undefined;
|
|
32
|
+
}>, "blendFunction">>;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpTiltShift2, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpTiltShift2, "ngtp-tilt-shift2", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
35
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { BlendFunction, TiltShiftEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type TiltShiftEffectOptions = Partial<NonNullable<ConstructorParameters<typeof TiltShiftEffect>[0]>>;
|
|
6
|
+
export declare class NgtpTiltShift {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: BlendFunction;
|
|
10
|
+
offset?: number;
|
|
11
|
+
rotation?: number;
|
|
12
|
+
focusArea?: number;
|
|
13
|
+
feather?: number;
|
|
14
|
+
bias?: number;
|
|
15
|
+
kernelSize?: import("postprocessing").KernelSize;
|
|
16
|
+
resolutionScale?: number;
|
|
17
|
+
resolutionX?: number;
|
|
18
|
+
resolutionY?: number;
|
|
19
|
+
}>, "blendFunction">>;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpTiltShift, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpTiltShift, "ngtp-tilt-shift", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { VignetteEffect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export type VignetteEffectOptions = Partial<NonNullable<ConstructorParameters<typeof VignetteEffect>[0]>>;
|
|
6
|
+
export declare class NgtpVignette {
|
|
7
|
+
effect: NgtpEffect;
|
|
8
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
9
|
+
blendFunction?: import("postprocessing").BlendFunction;
|
|
10
|
+
technique?: import("postprocessing").VignetteTechnique;
|
|
11
|
+
eskil?: boolean;
|
|
12
|
+
offset?: number;
|
|
13
|
+
darkness?: number;
|
|
14
|
+
}>, "blendFunction">>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpVignette, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpVignette, "ngtp-vignette", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { BlendFunction, Effect } from 'postprocessing';
|
|
2
|
+
import { NgtpEffect } from '../effect';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../effect";
|
|
5
|
+
export declare class WaterEffect extends Effect {
|
|
6
|
+
constructor({ blendFunction, factor }?: {
|
|
7
|
+
blendFunction?: BlendFunction | undefined;
|
|
8
|
+
factor?: number | undefined;
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
export type WaterEffectOptions = Partial<NonNullable<ConstructorParameters<typeof WaterEffect>[0]>>;
|
|
12
|
+
export declare class NgtpWater {
|
|
13
|
+
effect: NgtpEffect;
|
|
14
|
+
options: import("@angular/core").InputSignal<Omit<Partial<{
|
|
15
|
+
blendFunction?: BlendFunction | undefined;
|
|
16
|
+
factor?: number | undefined;
|
|
17
|
+
}>, "blendFunction">>;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgtpWater, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgtpWater, "ngtp-water", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof i1.NgtpEffect; inputs: { "blendFunction": "blendFunction"; "opacity": "opacity"; }; outputs: {}; }]>;
|
|
20
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "angular-three-postprocessing",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.300",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"email": "nartc7789@gmail.com",
|
|
14
14
|
"url": "https://nartc.me"
|
|
15
15
|
},
|
|
16
|
-
"description": "Postprocessing
|
|
16
|
+
"description": "Postprocessing for Angular Three",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"angular",
|
|
19
19
|
"threejs",
|
|
@@ -22,21 +22,21 @@
|
|
|
22
22
|
],
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/common": "
|
|
26
|
-
"@angular/core": "
|
|
27
|
-
"
|
|
25
|
+
"@angular/common": ">=18.0.0 <19.0.0",
|
|
26
|
+
"@angular/core": ">=18.0.0 <19.0.0",
|
|
27
|
+
"maath": ">=0.10.0 <0.11.0",
|
|
28
28
|
"postprocessing": "^6.0.0",
|
|
29
|
-
"three": "
|
|
30
|
-
"three-stdlib": "2.
|
|
29
|
+
"three": ">=0.148.0 <0.168.0",
|
|
30
|
+
"three-stdlib": "^2.0.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"tslib": "^2.3.0"
|
|
34
|
-
"@nx/devkit": "^16.0.0",
|
|
35
|
-
"nx": "^16.0.0"
|
|
33
|
+
"tslib": "^2.3.0"
|
|
36
34
|
},
|
|
37
35
|
"sideEffects": false,
|
|
38
|
-
"
|
|
39
|
-
|
|
36
|
+
"web-types": [
|
|
37
|
+
"../../node_modules/angular-three/web-types.json",
|
|
38
|
+
"node_modules/angular-three/web-types.json"
|
|
39
|
+
],
|
|
40
40
|
"module": "fesm2022/angular-three-postprocessing.mjs",
|
|
41
41
|
"typings": "index.d.ts",
|
|
42
42
|
"exports": {
|
|
@@ -48,12 +48,6 @@
|
|
|
48
48
|
"esm2022": "./esm2022/angular-three-postprocessing.mjs",
|
|
49
49
|
"esm": "./esm2022/angular-three-postprocessing.mjs",
|
|
50
50
|
"default": "./fesm2022/angular-three-postprocessing.mjs"
|
|
51
|
-
},
|
|
52
|
-
"./effects": {
|
|
53
|
-
"types": "./effects/index.d.ts",
|
|
54
|
-
"esm2022": "./esm2022/effects/angular-three-postprocessing-effects.mjs",
|
|
55
|
-
"esm": "./esm2022/effects/angular-three-postprocessing-effects.mjs",
|
|
56
|
-
"default": "./fesm2022/angular-three-postprocessing-effects.mjs"
|
|
57
51
|
}
|
|
58
52
|
}
|
|
59
|
-
}
|
|
53
|
+
}
|