Pmndrs.docs

Noise

A noise effect.

import { Noise } from '@react-three/postprocessing'
import { BlendFunction } from 'postprocessing'

return (
  <Noise
    premultiply // enables or disables noise premultiplication
    blendFunction={BlendFunction.ADD} // blend mode
  />
)

Example

Noise Demo
Noise Demo

Props

NameTypeDefaultDescription
premultiplyBooleanfalseWhether the noise should be multiplied with the input color.
blendFunctionBlendFunctionBlendFunction.SCREENThe blend function of this effect.