MultiresModifier(Modifier)
base classes — bpy_struct, Modifier
- class bpy.types.MultiresModifier(Modifier)
Multiresolution mesh modifier
- boundary_smooth
Controls how open boundaries are smoothed (default
'ALL')- Type:
Literal[Subdivision Boundary Smooth Items]
- filepath
Path to external displacements file (default “”, never None, blend relative
//prefix supported)- Type:
str
- is_external
Store multires displacements outside the .blend file, to save memory (default False, readonly)
- Type:
bool
- levels
Number of subdivisions to use in the viewport (in [0, 255], default 0)
- Type:
int
- quality
Accuracy of vertex positions, lower value is faster but less precise (in [1, 10], default 4)
- Type:
int
- render_levels
The subdivision level visible at render time (in [0, 255], default 0)
- Type:
int
- sculpt_levels
Number of subdivisions to use in sculpt mode (in [0, 255], default 0)
- Type:
int
- show_only_control_edges
Skip drawing/rendering of interior subdivided edges (default True)
- Type:
bool
- total_levels
Number of subdivisions for which displacements are stored (in [0, 255], default 0, readonly)
- Type:
int
- use_creases
Use mesh crease information to sharpen edges or corners (default True)
- Type:
bool
- use_custom_normals
Interpolates existing custom normals to resulting mesh (default False)
- Type:
bool
- use_sculpt_base_mesh
Make Sculpt Mode tools deform the base mesh while previewing the displacement of higher subdivision levels (default False)
- Type:
bool
- uv_smooth
Controls how smoothing is applied to UVs (default
'PRESERVE_BOUNDARIES')- Type:
Literal[Subdivision Uv Smooth Items]
- 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