LuciadRIA (2026.0.03)
    Preparing search index...

    With a BloomStyle, you add a BloomEffect to a shape. While BloomEffect defines global bloom properties, you can change the bloom of individual shapes with BloomStyle.

    2022.1

    interface BloomStyle {
        intensity?: number;
        threshold?: number;
    }

    Properties

    intensity?: number

    The intensity is a non-negative factor applied to the regular color to increase the color's intensity. The more intense a color, the more bloom it produces.

    <code>1</code>
    
    threshold?: number

    The threshold is a non-negative number that a pixel's luminance must exceed in order to be bloomed.

    A typical value is 0, in which case all pixels of the shape with this BloomStyle will be bloomed. In some cases, for example when styling a 3D icon with PBR shading, you may wish to only bloom the very bright specular highlights. In that case, you could set a higher threshold like 1.0.

    <code>0</code>
    

    2026.0