react-postprocessing
react-postprocessing copied to clipboard
📬 postprocessing for react-three-fiber
I have version 3.0.4 , after adding Lens flare have this error on every page resize Uncaught TypeError: Converting circular structure to JSON --> starting at object with constructor 'Object'...
I wanted to do animated scanlines, so I created this component ```js const AnimatedScanline = () => { const ref = useRef(null!) useFrame(({ clock }) => { const elapsed =...
The two demos linked at the top of the README are broken: * https://pqrpl.csb.app/ * https://5jgjz.csb.app/ On the website, these demos are broken: * [Bloom](https://react-postprocessing.docs.pmnd.rs/effects/bloom) * [BrightnessContrast](https://react-postprocessing.docs.pmnd.rs/effects/brightness-contrast) * [ChromaticAberration](https://react-postprocessing.docs.pmnd.rs/effects/chromatic-aberration) *...
I've been trying MRT with `EffectComposer` in order to avoid additional render passes to output normals, masks, and so on. Extensibility is always a problem with pure components, but in...
I met https://github.com/pmndrs/react-postprocessing/issues/330 issue. Simply deleting `api` from useEffect hook, I found that it stopped the infinite loop. But I'm afraid it is okay to remove `api` for interest in...
import React from 'react' import { EffectComposer, Outline, Selection, Select, } from '@react-three/postprocessing' import { Canvas } from '@react-three/fiber' import { OrbitControls } from '@react-three/drei' const App = () =>...
Hi, I cloned this demo from the examples page so I could use the SSR in a project (it works great in my browser so it's not a browser incompatibility):...
## Environment - `React` version: 19.0.0 - `Next` version: 15.1.4 - `three` version: 0.172.0 - `@react-three/fiber` version: 9.0.0-rc.2 - `@react-three/drei` version: 9.120.6 - `node` version: v23.4.0 - `npm` version: 10.9.2...
if someone knows the solution please help me
This could be handy when we are rendering some post effects out to a render texture with a copy pass. The workaround now is to do it from within a...