VolumeRender(bpy_struct)

base class — bpy_struct

class bpy.types.VolumeRender(bpy_struct)

Volume object render settings

clipping

Value under which voxels are considered empty space to optimize rendering (in [0, 1], default 0.001)

Type:

float

precision

Specify volume data precision. Lower values reduce memory consumption at the cost of detail. (default 'HALF')

  • FULL Full – Use 32-bit floating-point numbers for all data.

  • HALF Half – Use 16-bit floating-point numbers for all data.

  • VARIABLE Variable – Use variable bit quantization.

Type:

Literal[‘FULL’, ‘HALF’, ‘VARIABLE’]

space

Specify volume density and step size in object or world space (default 'OBJECT')

  • OBJECT Object – Keep volume opacity and detail the same regardless of object scale.

  • WORLD World – Specify volume step size and density in world space.

Type:

Literal[‘OBJECT’, ‘WORLD’]

step_size

Distance between volume samples. Lower values render more detail at the cost of performance. If set to zero, the step size is automatically determined based on voxel size. (in [0, inf], default 0.0)

Type:

float

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