The options of the noise filter.
Static
defaultThe default configuration options for the NoiseFilter.
These values will be used when no specific options are provided to the constructor. You can override any of these values by passing your own options object.
The amount of noise to apply to the filtered content.
This value controls the intensity of the random noise effect:
The seed value used for random noise generation.
This value determines the noise pattern:
Math.random()
can be used for random patterns
A filter that adds configurable random noise to rendered content.
This filter generates pixel noise based on a noise intensity value and an optional seed. It can be used to create various effects like film grain, static, or texture variation.
Based on: https://github.com/evanw/glfx.js/blob/master/src/filters/adjust/noise.js
Example
Author
Vico: vicocotea