angular-three-postprocessing 1.3.0 → 1.5.0

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 (36) hide show
  1. package/esm2020/effects/lib/bloom/bloom.mjs +3 -3
  2. package/esm2020/effects/lib/brightness-contrast/brightness-contrast.mjs +3 -3
  3. package/esm2020/effects/lib/color-depth/color-depth.mjs +3 -3
  4. package/esm2020/effects/lib/depth/depth.mjs +3 -3
  5. package/esm2020/effects/lib/dot-screen/dot-screen.mjs +3 -3
  6. package/esm2020/effects/lib/hue-saturation/hue-saturation.mjs +3 -3
  7. package/esm2020/effects/lib/lut/lut.mjs +3 -3
  8. package/esm2020/effects/lib/noise/noise.mjs +3 -3
  9. package/esm2020/effects/lib/scanline/scanline.mjs +3 -3
  10. package/esm2020/effects/lib/sepia/sepia.mjs +3 -3
  11. package/esm2020/effects/lib/ssao/ssao.mjs +3 -3
  12. package/esm2020/effects/lib/tilt-shift/tilt-shift.mjs +3 -3
  13. package/esm2020/effects/lib/tone-mapping/tone-mapping.mjs +3 -3
  14. package/esm2020/effects/lib/vignette/vignette.mjs +3 -3
  15. package/esm2020/lib/effect-composer.mjs +27 -6
  16. package/esm2020/lib/effect.mjs +3 -3
  17. package/esm2020/selection/angular-three-postprocessing-selection.mjs +5 -0
  18. package/esm2020/selection/index.mjs +3 -0
  19. package/esm2020/selection/lib/select.mjs +68 -0
  20. package/esm2020/selection/lib/selection.mjs +43 -0
  21. package/fesm2015/angular-three-postprocessing-effects.mjs +42 -42
  22. package/fesm2015/angular-three-postprocessing-selection.mjs +114 -0
  23. package/fesm2015/angular-three-postprocessing-selection.mjs.map +1 -0
  24. package/fesm2015/angular-three-postprocessing.mjs +29 -8
  25. package/fesm2015/angular-three-postprocessing.mjs.map +1 -1
  26. package/fesm2020/angular-three-postprocessing-effects.mjs +42 -42
  27. package/fesm2020/angular-three-postprocessing-selection.mjs +114 -0
  28. package/fesm2020/angular-three-postprocessing-selection.mjs.map +1 -0
  29. package/fesm2020/angular-three-postprocessing.mjs +29 -8
  30. package/fesm2020/angular-three-postprocessing.mjs.map +1 -1
  31. package/package.json +12 -4
  32. package/plugin/package.json +2 -3
  33. package/selection/README.md +3 -0
  34. package/selection/index.d.ts +2 -0
  35. package/selection/lib/select.d.ts +14 -0
  36. package/selection/lib/selection.d.ts +18 -0
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { NgtRxStore } from 'angular-three';
3
+ import { Group } from 'three';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NgtpSelect extends NgtRxStore implements OnInit {
6
+ readonly groupRef: import("angular-three").NgtInjectedRef<Group>;
7
+ private readonly selectionApi;
8
+ set enabled(enabled: boolean);
9
+ initialize(): void;
10
+ ngOnInit(): void;
11
+ private setSelectEffect;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSelect, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSelect, "ngtp-select", never, { "enabled": "enabled"; }, {}, never, ["*"], true, never>;
14
+ }
@@ -0,0 +1,18 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { RxState } from '@rx-angular/state';
3
+ import { NgtRxStore } from 'angular-three';
4
+ import * as i0 from "@angular/core";
5
+ export interface NgtpSelectionAPI {
6
+ selected: THREE.Object3D[];
7
+ select: RxState<{
8
+ selected: THREE.Object3D[];
9
+ }>['set'];
10
+ enabled: boolean;
11
+ }
12
+ export declare const NGTP_SELECTION_API: InjectionToken<NgtpSelectionAPI>;
13
+ export declare class NgtpSelection extends NgtRxStore {
14
+ set enabled(enabled: boolean);
15
+ initialize(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<NgtpSelection, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<NgtpSelection, "ngtp-selection", never, { "enabled": "enabled"; }, {}, never, ["*"], true, never>;
18
+ }