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
- Type:
CurveMapping
, (readonly)
- exposure¶
Exposure (stops) applied before display transform
- Type:
float in [-32, 32], default 0.0
- gamma¶
Amount of gamma modification applied after display transform
- Type:
float in [0, 5], default 1.0
- look¶
Additional transform applied before view transform for artistic needs
NONE
None – Do not modify image in an artistic manner.
- Type:
enum in [‘NONE’], default ‘NONE’
- use_curve_mapping¶
Use RGB curved for pre-display transformation
- Type:
boolean, default False
- use_hdr_view¶
Enable high dynamic range display in rendered viewport, uncapping display brightness. This requires a monitor with HDR support and a view transform designed for HDR. ‘Filmic’ and ‘AgX’ do not generate HDR colors.
- Type:
boolean, default False
- use_white_balance¶
Perform chromatic adaption from a different white point
- Type:
boolean, default False
- view_transform¶
View used when converting image to a display space
NONE
None – Do not perform any color transform on display, use old non-color managed technique for display.
- Type:
enum in [‘NONE’], default ‘NONE’
- white_balance_temperature¶
Color temperature of the scene’s white point
- Type:
float in [1800, 100000], default 6500.0
- white_balance_tint¶
Color tint of the scene’s white point (the default of 10 matches daylight)
- Type:
float in [-500, 500], default 10.0
- white_balance_whitepoint¶
The color which gets mapped to white (automatically converted to/from temperature and tint)
- Type:
mathutils.Color
of 3 items in [0, inf], default (0.0, 0.0, 0.0)
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type