Skip to content
🎉 Angular Three v4 is here! Read the announcement

NgtpNoise

The noise effect adds film grain or static noise to the scene, useful for creating a cinematic or vintage look.

import { NgtpEffectComposer, NgtpNoise } from 'angular-three-postprocessing';
@Component({
template: `
<ngtp-effect-composer>
<ngtp-noise [options]="{ opacity: 0.02 }" />
</ngtp-effect-composer>
`,
imports: [NgtpEffectComposer, NgtpNoise],
})
export class SceneGraph {}
PropertyTypeDefaultDescription
opacitynumber0.02Opacity/intensity of the noise
premultiplybooleanfalsePremultiply the noise with the scene
<ngtp-effect-composer>
<ngtp-noise [options]="{ opacity: 0.05, premultiply: true }" />
<ngtp-vignette [options]="{ darkness: 0.5 }" />
</ngtp-effect-composer>