ColorManagedViewSettings(bpy_struct)

base class — bpy_struct

class bpy.types.ColorManagedViewSettings(bpy_struct)

Color management settings used for displaying images on the display

curve_mapping

Color curve mapping applied before display transform (readonly)

Type:

CurveMapping

exposure

Exposure (stops) applied before display transform, multiplying by 2^exposure (in [-32, 32], default 0.0)

Type:

float

gamma

Additional gamma encoding after display transform, for output with custom gamma (in [0, 5], default 1.0)

Type:

float

is_hdr

The display and view transform supports high dynamic range colors (default False, readonly)

Type:

bool

look

Additional transform applied before view transform for artistic needs (default 'NONE')

  • NONE None – Do not modify image in an artistic manner.

Type:

Literal[‘NONE’]

support_emulation

The display and view transform supports automatic emulation for another display device, using the display color spaces mechanism in OpenColorIO v2 configurations (default False, readonly)

Type:

bool

use_curve_mapping

Use RGB curved for pre-display transformation (default False)

Type:

bool

use_white_balance

Perform chromatic adaption from a different white point (default False)

Type:

bool

view_transform

View used when converting image to a display space (default 'NONE')

  • NONE None – Do not perform any color transform on display, use old non-color managed technique for display.

Type:

Literal[‘NONE’]

white_balance_temperature

Color temperature of the scene’s white point (in [1800, 100000], default 6500.0)

Type:

float

white_balance_tint

Color tint of the scene’s white point (the default of 10 matches daylight) (in [-500, 500], default 10.0)

Type:

float

white_balance_whitepoint

The color which gets mapped to white (automatically converted to/from temperature and tint) (array of 3 items, in [0, inf], default (0.0, 0.0, 0.0))

Type:

mathutils.Color

classmethod bl_rna_get_subclass(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (bpy.types.Struct | None) – The value to return when not found.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions

References