WarpModifier(Modifier)
base classes — bpy_struct, Modifier
- class bpy.types.WarpModifier(Modifier)
Warp modifier
- bone_from
Bone to transform from (default “”, never None)
- Type:
str
- bone_to
Bone defining offset (default “”, never None)
- Type:
str
- falloff_curve
Custom falloff curve (readonly)
- Type:
- falloff_radius
Radius to apply (in [-inf, inf], default 1.0)
- Type:
float
- falloff_type
(default
'SMOOTH')- Type:
Literal[‘NONE’, ‘CURVE’, ‘SMOOTH’, ‘SPHERE’, ‘ROOT’, ‘INVERSE_SQUARE’, ‘SHARP’, ‘LINEAR’, ‘CONSTANT’]
- invert_vertex_group
Invert vertex group influence (default False)
- Type:
bool
- strength
(in [-inf, inf], default 1.0)
- Type:
float
- texture_coords
(default
'LOCAL')LOCALLocal – Use the local coordinate system for the texture coordinates.GLOBALGlobal – Use the global coordinate system for the texture coordinates.OBJECTObject – Use the linked object’s local coordinate system for the texture coordinates.UVUV – Use UV coordinates for the texture coordinates.
- Type:
Literal[‘LOCAL’, ‘GLOBAL’, ‘OBJECT’, ‘UV’]
- texture_coords_bone
Bone to set the texture coordinates (default “”, never None)
- Type:
str
- use_gpu_deform
Deform mesh vertices using the GPU instead of the CPU (default False)
- Type:
bool
- use_volume_preserve
Preserve volume when rotations are used (default False)
- Type:
bool
- uv_layer
UV map name (default “”, never None)
- Type:
str
- vertex_group
Vertex group name for modulating the deform (default “”, never None)
- Type:
str
- 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