ShrinkwrapConstraint(Constraint)
base classes — bpy_struct, Constraint
- class bpy.types.ShrinkwrapConstraint(Constraint)
Create constraint-based shrinkwrap relationship
- cull_face
Stop vertices from projecting to a face on the target when facing towards/away
OFFOff – No culling.FRONTFront – No projection when in front of the face.BACKBack – No projection when behind the face.
- Type:
enum in [
'OFF','FRONT','BACK'], default"'OFF'"
- distance
Distance to Target
- Type:
float in [0, inf], default 0.0
- project_axis
Axis constrain to
- Type:
enum in Object Axis Items, default
"'POS_X'"
- project_axis_space
Space for the projection axis
WORLDWorld Space – The constraint is applied relative to the world coordinate system.CUSTOMCustom Space – The constraint is applied in local space of a custom object/bone/vertex group.POSEPose Space – The constraint is applied in Pose Space, the object transformation is ignored.LOCAL_WITH_PARENTLocal With Parent – The constraint is applied relative to the rest pose local coordinate system of the bone, thus including the parent-induced transformation.LOCALLocal Space – The constraint is applied relative to the local coordinate system of the object.
- Type:
enum in [
'WORLD','CUSTOM','POSE','LOCAL_WITH_PARENT','LOCAL'], default"'WORLD'"
- project_limit
Limit the distance used for projection (zero disables)
- Type:
float in [0, inf], default 0.0
- shrinkwrap_type
Select type of shrinkwrap algorithm for target position
NEAREST_SURFACENearest Surface Point – Shrink the location to the nearest target surface.PROJECTProject – Shrink the location to the nearest target surface along a given axis.NEAREST_VERTEXNearest Vertex – Shrink the location to the nearest target vertex.TARGET_PROJECTTarget Normal Project – Shrink the location to the nearest target surface along the interpolated vertex normals of the target.
- Type:
enum in [
'NEAREST_SURFACE','PROJECT','NEAREST_VERTEX','TARGET_PROJECT'], default"'NEAREST_SURFACE'"
- track_axis
Axis that is aligned to the normal
- Type:
enum in [
'TRACK_X','TRACK_Y','TRACK_Z','TRACK_NEGATIVE_X','TRACK_NEGATIVE_Y','TRACK_NEGATIVE_Z'], default"'TRACK_X'"
- use_invert_cull
When projecting in the opposite direction invert the face cull mode
- Type:
boolean, default False
- use_project_opposite
Project in both specified and opposite directions
- Type:
boolean, default False
- use_track_normal
Align the specified axis to the surface normal
- Type:
boolean, default False
- wrap_mode
Select how to constrain the object to the target surface
- Type:
enum in Modifier Shrinkwrap Mode Items, default
"'ON_SURFACE'"
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type