@takram/three-geospatial-effects 0.1.0 → 0.3.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.
- package/CHANGELOG.md +15 -0
- package/build/r3f.cjs +2 -730
- package/build/r3f.cjs.map +1 -1
- package/build/r3f.js +153 -1605
- package/build/r3f.js.map +1 -1
- package/package.json +5 -6
- package/src/r3f/EffectComposer.tsx +11 -8
- package/src/r3f/Geometry.tsx +3 -5
- package/src/r3f/LensFlare.tsx +3 -5
- package/src/r3f/Normal.tsx +3 -8
- package/src/r3f/index.ts +0 -2
- package/types/DepthEffect.d.ts +2 -3
- package/types/DitheringEffect.d.ts +0 -1
- package/types/DownsampleThresholdMaterial.d.ts +0 -1
- package/types/GeometryEffect.d.ts +2 -3
- package/types/GeometryPass.d.ts +1 -2
- package/types/LensFlareEffect.d.ts +4 -5
- package/types/LensFlareFeaturesMaterial.d.ts +0 -1
- package/types/NormalEffect.d.ts +2 -3
- package/types/createHaldLookupTexture.d.ts +1 -2
- package/types/r3f/Depth.d.ts +5 -3
- package/types/r3f/Dithering.d.ts +5 -3
- package/types/r3f/EffectComposer.d.ts +4 -5
- package/types/r3f/Geometry.d.ts +3 -4
- package/types/r3f/LensFlare.d.ts +3 -4
- package/types/r3f/Normal.d.ts +3 -4
- package/types/r3f/index.d.ts +0 -2
- package/src/r3f/SSAO.tsx +0 -123
- package/src/r3f/types.ts +0 -12
- package/types/r3f/SSAO.d.ts +0 -26
- package/types/r3f/types.d.ts +0 -8
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.3.0] - 2025-03-14
|
4
|
+
|
5
|
+
### Changed
|
6
|
+
|
7
|
+
- Removed `SSAO` component in favor of the one in `@react-three/postprocessing`.
|
8
|
+
|
9
|
+
## [0.2.0] - 2025-03-09
|
10
|
+
|
11
|
+
Updated peer dependencies to React 19 and R3F v9. For React 18 and R3F v8, use version 0.1.x, which will continue to receive fixes.
|
12
|
+
|
13
|
+
### Changed
|
14
|
+
|
15
|
+
- Migrated types and internal fields to R3F v9.
|
16
|
+
- Removed deprecated classes and properties.
|
17
|
+
|
3
18
|
## [0.1.0] - 2025-03-09
|
4
19
|
|
5
20
|
Compatibility release to continue support for React 18 and R3F v8.
|