BlendFileColorspace(bpy_struct)¶
base class — bpy_struct
- class bpy.types.BlendFileColorspace(bpy_struct)¶
Information about the color space used for data-blocks in a blend file
- is_missing_opencolorio_config¶
A color space, view or display was not found, which likely means the OpenColorIO config used to create this blend file is missing (default False, readonly)
- Type:
bool
- working_space¶
Color space used for all scene linear colors in this file, and for compositing, shader and geometry nodes processing (readonly)
Linear Rec.709Linear Rec.709 – Linear BT.709 with illuminant D65 white point.Linear Rec.2020Linear Rec.2020 – Linear BT.2020 with illuminant D65 white point.ACEScgACEScg – Linear AP1 with ACES white point.
- Type:
Literal[‘Linear Rec.709’, ‘Linear Rec.2020’, ‘ACEScg’]
- working_space_interop_id¶
Unique identifier for common color spaces, as defined by the Color Interop Forum. May be empty if there is no interop ID for the working space. Common values are lin_rec709_scene, lin_rec2020_scene and lin_ap1_scene (for ACEScg) (default “”, readonly, never None)
- Type:
str
- 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:
- 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