LimitDistanceConstraint(Constraint)

base classes — bpy_struct, Constraint

class bpy.types.LimitDistanceConstraint(Constraint)

Limit the distance from target object

distance

Radius of limiting sphere (in [-inf, inf], default 0.0)

Type:

float

head_tail

Target along length of bone: Head is 0, Tail is 1 (in [0, 1], default 0.0)

Type:

float

limit_mode

Distances in relation to sphere of influence to allow (default 'LIMITDIST_INSIDE')

  • LIMITDIST_INSIDE Inside – The object is constrained inside a virtual sphere around the target object, with a radius defined by the limit distance.

  • LIMITDIST_OUTSIDE Outside – The object is constrained outside a virtual sphere around the target object, with a radius defined by the limit distance.

  • LIMITDIST_ONSURFACE On Surface – The object is constrained on the surface of a virtual sphere around the target object, with a radius defined by the limit distance.

Type:

Literal[‘LIMITDIST_INSIDE’, ‘LIMITDIST_OUTSIDE’, ‘LIMITDIST_ONSURFACE’]

subtarget

Armature bone, mesh or lattice vertex group, … (default “”, never None)

Type:

str

target

Target object

Type:

Object

use_bbone_shape

Follow shape of B-Bone segments when calculating Head/Tail position (default False)

Type:

bool

use_transform_limit

Transforms are affected by this constraint as well (default False)

Type:

bool

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.Struct

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

Inherited Properties

Inherited Functions