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

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.