Engine API Reference - v2.7.3
    Preparing search index...

    Interface Grading

    Properties related to the color grading effect, a postprocessing technique used to adjust and the visual tone of an image. This effect modifies brightness, contrast, saturation, and overall color balance to achieve a specific aesthetic or mood.

    interface Grading {
        brightness: number;
        contrast: number;
        enabled: boolean;
        saturation: number;
        tint: Color;
    }
    Index

    Properties

    brightness: number

    The brightness of the grading effect, 0-3 range. Defaults to 1.

    contrast: number

    The contrast of the grading effect, 0.5-1.5 range. Defaults to 1.

    enabled: boolean

    Whether grading is enabled. Defaults to false.

    saturation: number

    The saturation of the grading effect, 0-2 range. Defaults to 1.

    tint: Color

    The tint color of the grading effect. Defaults to white.