SceneDisplay(bpy_struct)
base class — bpy_struct
- class bpy.types.SceneDisplay(bpy_struct)
Scene display settings for 3D viewport
- light_direction
Direction of the light for shadows and highlights (array of 3 items, in [-inf, inf], default (0.57735, 0.57735, 0.57735))
- Type:
- matcap_ssao_attenuation
Attenuation constant (in [0, 100000], default 1.0)
- Type:
float
- matcap_ssao_distance
Distance of object that contribute to the cavity/edge effect (in [0, 100000], default 0.2)
- Type:
float
- matcap_ssao_samples
Number of samples (in [1, 500], default 16)
- Type:
int
- render_aa
Method of anti-aliasing when rendering final image (default
'8')OFFNo Anti-Aliasing – Scene will be rendering without any anti-aliasing.FXAASingle Pass Anti-Aliasing – Scene will be rendered using a single pass anti-aliasing method (FXAA).55 Samples – Scene will be rendered using 5 anti-aliasing samples.88 Samples – Scene will be rendered using 8 anti-aliasing samples.1111 Samples – Scene will be rendered using 11 anti-aliasing samples.1616 Samples – Scene will be rendered using 16 anti-aliasing samples.3232 Samples – Scene will be rendered using 32 anti-aliasing samples.
- Type:
Literal[‘OFF’, ‘FXAA’, ‘5’, ‘8’, ‘11’, ‘16’, ‘32’]
- shading
Shading settings for OpenGL render engine (readonly)
- Type:
- shadow_focus
Shadow factor hardness (in [0, 1], default 0.0)
- Type:
float
- shadow_shift
Shadow termination angle (in [0, 1], default 0.1)
- Type:
float
- viewport_aa
Method of anti-aliasing when rendering 3d viewport (default
'FXAA')OFFNo Anti-Aliasing – Scene will be rendering without any anti-aliasing.FXAASingle Pass Anti-Aliasing – Scene will be rendered using a single pass anti-aliasing method (FXAA).55 Samples – Scene will be rendered using 5 anti-aliasing samples.88 Samples – Scene will be rendered using 8 anti-aliasing samples.1111 Samples – Scene will be rendered using 11 anti-aliasing samples.1616 Samples – Scene will be rendered using 16 anti-aliasing samples.3232 Samples – Scene will be rendered using 32 anti-aliasing samples.
- Type:
Literal[‘OFF’, ‘FXAA’, ‘5’, ‘8’, ‘11’, ‘16’, ‘32’]
- 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