RPE Chart Utils
    Preparing search index...

    Interface CreateEffectOptions

    Options for creating a shader effect.

    interface CreateEffectOptions {
        global?: boolean;
        targetRange?: { minZIndex: number; maxZIndex: number; exclusive?: boolean };
        vars?: Record<string, Variable>;
    }
    Index

    Properties

    global?: boolean

    Whether the effect applies to UI elements too (default: false).

    targetRange?: { minZIndex: number; maxZIndex: number; exclusive?: boolean }

    Z-index targeting range. If set, the shader only affects objects in this range.

    vars?: Record<string, Variable>

    Uniform variable overrides (static or animated).