VFX-JS
    Preparing search index...

    Type Alias MatrixInternalParams

    Params in the form the shader and atlas builder consume: grid and the
    scalar knobs sanitized, the trail colour packed into gradient stops. Built
    once in the constructor and patched in setParams, so render reads it
    straight without re-sanitizing each frame.

    type MatrixInternalParams = {
        background: MatrixColor;
        birthRate: number;
        brightness: number;
        charAspect?: number;
        contrast: number;
        font: string;
        fontWeight: string | number;
        glyphs?: MatrixGlyphs;
        glyphSpeed: number;
        grid: [number, number];
        headColor: MatrixColor;
        invert: number;
        seed: number;
        speed: number;
        stops: ReturnType<typeof buildStops>;
        tail: number;
        tailFade: number;
    }
    Index

    Properties

    background: MatrixColor
    birthRate: number
    brightness: number
    charAspect?: number
    contrast: number
    font: string
    fontWeight: string | number
    glyphs?: MatrixGlyphs
    glyphSpeed: number
    grid: [number, number]
    headColor: MatrixColor
    invert: number
    seed: number
    speed: number
    stops: ReturnType<typeof buildStops>
    tail: number
    tailFade: number