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:

mathutils.Vector

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')

  • OFF No Anti-Aliasing – Scene will be rendering without any anti-aliasing.

  • FXAA Single Pass Anti-Aliasing – Scene will be rendered using a single pass anti-aliasing method (FXAA).

  • 5 5 Samples – Scene will be rendered using 5 anti-aliasing samples.

  • 8 8 Samples – Scene will be rendered using 8 anti-aliasing samples.

  • 11 11 Samples – Scene will be rendered using 11 anti-aliasing samples.

  • 16 16 Samples – Scene will be rendered using 16 anti-aliasing samples.

  • 32 32 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:

View3DShading

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')

  • OFF No Anti-Aliasing – Scene will be rendering without any anti-aliasing.

  • FXAA Single Pass Anti-Aliasing – Scene will be rendered using a single pass anti-aliasing method (FXAA).

  • 5 5 Samples – Scene will be rendered using 5 anti-aliasing samples.

  • 8 8 Samples – Scene will be rendered using 8 anti-aliasing samples.

  • 11 11 Samples – Scene will be rendered using 11 anti-aliasing samples.

  • 16 16 Samples – Scene will be rendered using 16 anti-aliasing samples.

  • 32 32 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:

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