@react-three/postprocessing 2.9.0 → 2.9.2
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 +25 -96
- package/dist/effects/Pixelation.d.ts +2 -2
- package/dist/effects/ScanlineEffect.d.ts +1 -0
- package/dist/index.cjs +486 -677
- package/dist/index.js +397 -586
- package/dist/util.d.ts +1 -1
- package/package.json +15 -17
package/README.md
CHANGED
|
@@ -4,7 +4,12 @@
|
|
|
4
4
|
[](https://www.npmjs.com/package/@react-three/postprocessing)
|
|
5
5
|
[](https://discord.gg/ZZjjNvJ)
|
|
6
6
|
|
|
7
|
-
`react-postprocessing` is a
|
|
7
|
+
`react-postprocessing` is a
|
|
8
|
+
[postprocessing](https://github.com/pmndrs/postprocessing) wrapper for
|
|
9
|
+
[@react-three/fiber](https://github.com/pmndrs/react-three-fiber). This is not
|
|
10
|
+
(yet) meant for complex orchestration of effects, but can save you
|
|
11
|
+
[hundreds of LOC](https://twitter.com/0xca0a/status/1289501594698960897) for a
|
|
12
|
+
straight forward effects-chain.
|
|
8
13
|
|
|
9
14
|
```bash
|
|
10
15
|
npm install @react-three/postprocessing
|
|
@@ -20,17 +25,29 @@ npm install @react-three/postprocessing
|
|
|
20
25
|
|
|
21
26
|
#### Why postprocessing and not three/examples/jsm/postprocessing?
|
|
22
27
|
|
|
23
|
-
From
|
|
28
|
+
From
|
|
29
|
+
[https://github.com/pmndrs/postprocessing](https://github.com/pmndrs/postprocessing#performance)
|
|
24
30
|
|
|
25
|
-
> This library provides an EffectPass which automatically organizes and merges
|
|
31
|
+
> This library provides an EffectPass which automatically organizes and merges
|
|
32
|
+
> any given combination of effects. This minimizes the amount of render
|
|
33
|
+
> operations and makes it possible to combine many effects without the
|
|
34
|
+
> performance penalties of traditional pass chaining. Additionally, every effect
|
|
35
|
+
> can choose its own blend function.
|
|
26
36
|
>
|
|
27
|
-
> All fullscreen render operations also use a single triangle that fills the
|
|
37
|
+
> All fullscreen render operations also use a single triangle that fills the
|
|
38
|
+
> screen. Compared to using a quad, this approach harmonizes with modern GPU
|
|
39
|
+
> rasterization patterns and eliminates unnecessary fragment calculations along
|
|
40
|
+
> the screen diagonal. This is especially beneficial for GPGPU passes and
|
|
41
|
+
> effects that use complex fragment shaders.
|
|
28
42
|
|
|
29
|
-
Postprocessing also supports srgb-encoding out of the box, as well as WebGL2
|
|
43
|
+
Postprocessing also supports srgb-encoding out of the box, as well as WebGL2
|
|
44
|
+
MSAA (multi sample anti aliasing), which is react-postprocessing's default, you
|
|
45
|
+
get high performance crisp results w/o jagged edges.
|
|
30
46
|
|
|
31
47
|
#### What does it look like?
|
|
32
48
|
|
|
33
|
-
Here's an example combining a couple of effects
|
|
49
|
+
Here's an example combining a couple of effects
|
|
50
|
+
([live demo](https://codesandbox.io/s/react-postprocessing-dof-blob-pqrpl?)).
|
|
34
51
|
|
|
35
52
|
<a href="https://codesandbox.io/s/react-postprocessing-dof-blob-pqrpl?" target="_blank" rel="noopener">
|
|
36
53
|
<img src="bubbles.jpg" alt="Bubbles Demo" />
|
|
@@ -38,7 +55,7 @@ Here's an example combining a couple of effects ([live demo](https://codesandbox
|
|
|
38
55
|
|
|
39
56
|
```jsx
|
|
40
57
|
import React from 'react'
|
|
41
|
-
import {
|
|
58
|
+
import { Bloom, DepthOfField, EffectComposer, Noise, Vignette } from '@react-three/postprocessing'
|
|
42
59
|
import { Canvas } from '@react-three/fiber'
|
|
43
60
|
|
|
44
61
|
function App() {
|
|
@@ -58,93 +75,5 @@ function App() {
|
|
|
58
75
|
|
|
59
76
|
## Documentation
|
|
60
77
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
The EffectComposer must wrap all your effects. It will manage them for you.
|
|
64
|
-
|
|
65
|
-
```jsx
|
|
66
|
-
<EffectComposer
|
|
67
|
-
enabled?: boolean
|
|
68
|
-
children: JSX.Element | JSX.Element[]
|
|
69
|
-
depthBuffer?: boolean
|
|
70
|
-
disableNormalPass?: boolean
|
|
71
|
-
stencilBuffer?: boolean
|
|
72
|
-
autoClear?: boolean
|
|
73
|
-
multisampling?: number
|
|
74
|
-
frameBufferType?: TextureDataType
|
|
75
|
-
/** For effects that support DepthDownsamplingPass */
|
|
76
|
-
resolutionScale?: number
|
|
77
|
-
renderPriority?: number
|
|
78
|
-
camera?: THREE.Camera
|
|
79
|
-
scene?: THREE.Scene
|
|
80
|
-
>
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
#### Selection/Select
|
|
84
|
-
|
|
85
|
-
Some effects, like Outline or SelectiveBloom can select specific objects. To manage this in a declarative scene with just references can be messy, especially when things have to be grouped. These two components take care of it:
|
|
86
|
-
|
|
87
|
-
```jsx
|
|
88
|
-
<Selection
|
|
89
|
-
children: JSX.Element | JSX.Element[]
|
|
90
|
-
enabled?: boolean
|
|
91
|
-
>
|
|
92
|
-
|
|
93
|
-
<Select
|
|
94
|
-
children: JSX.Element | JSX.Element[]
|
|
95
|
-
enabled?: boolean
|
|
96
|
-
>
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
You wrap everything into a selection, this one holds all the selections. Now you can individually select objects or groups. Effects that support selections (for instance `Outline`) will acknowledge it.
|
|
100
|
-
|
|
101
|
-
```jsx
|
|
102
|
-
<Selection>
|
|
103
|
-
<EffectComposer autoclear={false}>
|
|
104
|
-
<Outline blur edgeStrength={100} />
|
|
105
|
-
</EffectComposer>
|
|
106
|
-
<Select enabled>
|
|
107
|
-
<mesh />
|
|
108
|
-
</Select>
|
|
109
|
-
</Selection>
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
Selection can be nested and group multiple object, higher up selection take precence over lower ones. The following for instance will select everything. Remove the outmost `enabled` and only the two mesh group is selected. You can flip the selections or bind them to interactions and state.
|
|
113
|
-
|
|
114
|
-
```jsx
|
|
115
|
-
<Select enabled>
|
|
116
|
-
<Select enabled>
|
|
117
|
-
<mesh />
|
|
118
|
-
<mesh />
|
|
119
|
-
</Select>
|
|
120
|
-
<Select>
|
|
121
|
-
<mesh />
|
|
122
|
-
</Select>
|
|
123
|
-
</Select>
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
#### Selective bloom
|
|
127
|
-
|
|
128
|
-
Bloom is selective by default, you control it not on the effect pass but on the materials by lifting their colors out of 0-1 range. a `luminanceThreshold` of 1 ensures that ootb nothing will glow, only the materials you pick. For this to work `toneMapped` has to be false on the materials, because it would otherwise clamp colors between 0 and 1 again.
|
|
129
|
-
|
|
130
|
-
```jsx
|
|
131
|
-
<Bloom mipmapBlur luminanceThreshold={1} />
|
|
132
|
-
|
|
133
|
-
// ❌ will not glow, same as RGB [1,0,0]
|
|
134
|
-
<meshStandardMaterial color="red"/>
|
|
135
|
-
|
|
136
|
-
// ✅ will glow, same as RGB [2,0,0]
|
|
137
|
-
<meshStandardMaterial emissive="red" emissiveIntensity={2} toneMapped={false} />
|
|
138
|
-
|
|
139
|
-
// ❌ will not glow, same as RGB [1,0,0]
|
|
140
|
-
<meshBasicMaterial color="red" />
|
|
141
|
-
|
|
142
|
-
// ❌ will not glow, same as RGB [1,0,0], tone-mapping will clamp colors between 0 and 1
|
|
143
|
-
<meshBasicMaterial color={[2,0,0]} />
|
|
144
|
-
|
|
145
|
-
// ✅ will glow, same as RGB [2,0,0]
|
|
146
|
-
<meshBasicMaterial color={[2,0,0]} toneMapped={false} />
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
- [react-postprocessing exports](https://github.com/pmndrs/react-postprocessing/blob/master/api.md)
|
|
78
|
+
- [react-postprocessing docs](https://docs.pmnd.rs/react-postprocessing)
|
|
150
79
|
- [postprocessing docs](https://pmndrs.github.io/postprocessing/public/docs/)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { PixelationEffect } from 'postprocessing';
|
|
3
3
|
export type PixelationProps = {
|
|
4
4
|
granularity?: number;
|
|
5
5
|
};
|
|
6
|
-
export declare const Pixelation:
|
|
6
|
+
export declare const Pixelation: import("react").ForwardRefExoticComponent<PixelationProps & import("react").RefAttributes<PixelationEffect>>;
|