Skip to content

Commit 81e85ce

Browse files
author
v1rtl
committed
fmt markdown and rearrange docs
1 parent bd7481d commit 81e85ce

File tree

9 files changed

+200
-603
lines changed

9 files changed

+200
-603
lines changed

CODE_OF_CONDUCT.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ appearance, race, religion, or sexual identity and orientation.
1414
Examples of behavior that contributes to creating a positive environment
1515
include:
1616

17-
* Using welcoming and inclusive language
18-
* Being respectful of differing viewpoints and experiences
19-
* Gracefully accepting constructive criticism
20-
* Focusing on what is best for the community
21-
* Showing empathy towards other community members
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
* The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
27-
* Trolling, insulting/derogatory comments, and personal or political attacks
28-
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
- Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
3333

3434
## Our Responsibilities
3535

README.md

Lines changed: 25 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
[![Downloads](https://img.shields.io/npm/dt/@react-three/postprocessing.svg?style=flat&colorA=000000&colorB=000000)](https://www.npmjs.com/package/@react-three/postprocessing)
55
[![Discord Shield](https://img.shields.io/discord/740090768164651008?style=flat&colorA=000000&colorB=000000&label=discord&logo=discord&logoColor=ffffff)](https://discord.gg/ZZjjNvJ)
66

7-
`react-postprocessing` is a [postprocessing](https://github.com/pmndrs/postprocessing) wrapper for [@react-three/fiber](https://github.com/pmndrs/react-three-fiber). This is not (yet) meant for complex orchestration of effects, but can save you [hundreds of LOC](https://twitter.com/0xca0a/status/1289501594698960897) for a straight forward effects-chain.
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.
813

914
```bash
1015
npm install @react-three/postprocessing
@@ -20,25 +25,37 @@ npm install @react-three/postprocessing
2025

2126
#### Why postprocessing and not three/examples/jsm/postprocessing?
2227

23-
From [https://github.com/pmndrs/postprocessing](https://github.com/pmndrs/postprocessing#performance)
28+
From
29+
[https://github.com/pmndrs/postprocessing](https://github.com/pmndrs/postprocessing#performance)
2430

25-
> This library provides an EffectPass which automatically organizes and merges any given combination of effects. This minimizes the amount of render operations and makes it possible to combine many effects without the performance penalties of traditional pass chaining. Additionally, every effect can choose its own blend function.
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.
2636
>
27-
> All fullscreen render operations also use a single triangle that fills the screen. Compared to using a quad, this approach harmonizes with modern GPU rasterization patterns and eliminates unnecessary fragment calculations along the screen diagonal. This is especially beneficial for GPGPU passes and effects that use complex fragment shaders.
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.
2842
29-
Postprocessing also supports srgb-encoding out of the box, as well as WebGL2 MSAA (multi sample anti aliasing), which is react-postprocessing's default, you get high performance crisp results w/o jagged edges.
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.
3046

3147
#### What does it look like?
3248

33-
Here's an example combining a couple of effects ([live demo](https://codesandbox.io/s/react-postprocessing-dof-blob-pqrpl?)).
49+
Here's an example combining a couple of effects
50+
([live demo](https://codesandbox.io/s/react-postprocessing-dof-blob-pqrpl?)).
3451

3552
<a href="https://codesandbox.io/s/react-postprocessing-dof-blob-pqrpl?" target="_blank" rel="noopener">
3653
<img src="bubbles.jpg" alt="Bubbles Demo" />
3754
</a>
3855

3956
```jsx
4057
import React from 'react'
41-
import { EffectComposer, DepthOfField, Bloom, Noise, Vignette } from '@react-three/postprocessing'
58+
import { Bloom, DepthOfField, EffectComposer, Noise, Vignette } from '@react-three/postprocessing'
4259
import { Canvas } from '@react-three/fiber'
4360

4461
function App() {
@@ -58,93 +75,5 @@ function App() {
5875

5976
## Documentation
6077

61-
#### EffectComposer
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)
15079
- [postprocessing docs](https://pmndrs.github.io/postprocessing/public/docs/)

0 commit comments

Comments
 (0)