ledfx
    Preparing search index...

    Interface BarEffectConfig

    Specific configuration for the 'bar' effect.

    interface BarEffectConfig {
        beat_offset?: number;
        beat_skip?: "none" | "odds" | "even";
        color_step?: number;
        ease_method?: "ease_in_out" | "ease_in" | "ease_out" | "linear";
        mode?: "bounce" | "wipe" | "in-out";
        skip_every?: 2 | 1;
        type: "bar";
    }
    Index

    Properties

    beat_offset?: number

    Offset the beat

    0
    

    0.0

    1.0

    beat_skip?: "none" | "odds" | "even"

    Skips odd or even beats

    'none'
    
    color_step?: number

    Amount of color change per beat

    0.125
    

    0.0625

    0.5

    ease_method?: "ease_in_out" | "ease_in" | "ease_out" | "linear"

    Acceleration profile of bar

    'ease_out'
    
    mode?: "bounce" | "wipe" | "in-out"

    Choose from different animations

    'wipe'
    
    skip_every?: 2 | 1

    If skipping beats, skip every

    1
    
    type: "bar"