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
- Type:
boolean, default False, (readonly)
- working_space¶
Color space used for all scene linear colors in this file, and for compositing, shader and geometry nodes processing
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:
enum in [
'Linear Rec.709','Linear Rec.2020','ACEScg'], (readonly)
- 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)
- Type:
string, default “”, (readonly, never None)
- 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.Structsubclass
- 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