Interface NoiseEffectRendererParams

interface NoiseEffectRendererParams {
    duration?: number;
    noises?: Uint8ClampedArray[];
}

Properties

Properties

duration?: number

Total animation cycle duration in ms. Default: 200.

noises?: Uint8ClampedArray[]

Pre-loaded noise frames as raw pixel data. Use Utils.bitmapsToPixelData to convert ImageBitmap[] to the required format.