ledfx
    Preparing search index...

    Interface BlenderEffectConfig

    Specific configuration for the 'blender' effect.

    interface BlenderEffectConfig {
        background?: string;
        background_stretch?: "2d full" | "2d tile";
        foreground?: string;
        foreground_stretch?: "2d full" | "2d tile";
        invert_mask?: boolean;
        mask?: string;
        mask_cutoff?: number;
        mask_stretch?: "2d full" | "2d tile";
        type: "blender";
    }
    Index

    Properties

    background?: string

    The virtual from which to source the background

    ''
    
    background_stretch?: "2d full" | "2d tile"

    How to stretch the background source pixles to the effect pixels

    '2d full'
    
    foreground?: string

    The virtual from which to source the foreground

    ''
    
    foreground_stretch?: "2d full" | "2d tile"

    How to stretch the foreground source pixles to the effect pixels

    '2d full'
    
    invert_mask?: boolean

    Switch Foreground and Background

    False
    
    mask?: string

    The virtual from which to source the mask

    ''
    
    mask_cutoff?: number

    1 default = luminance as alpha, anything below 1 is mask cutoff

    1.0
    

    0.01

    1.0

    mask_stretch?: "2d full" | "2d tile"

    How to stretch the mask source pixles to the effect pixels

    '2d full'
    
    type: "blender"