VHSEffect constructor

const VHSEffect({
  1. double noiseAmount = 0.1,
  2. double trackingError = 0.05,
})

Creates a VHSEffect.

noiseAmount controls the grain noise intensity (default 0.1). trackingError controls the strength of horizontal line displacement (default 0.05).

Implementation

const VHSEffect({
  this.noiseAmount = 0.1,
  this.trackingError = 0.05,
});