LimitScaleConstraint(Constraint)#

base classes — bpy_struct, Constraint

class bpy.types.LimitScaleConstraint(Constraint)#

Limit the scaling of the constrained object

max_x#

Highest X value to allow

Type:

float in [-1000, 1000], default 0.0

max_y#

Highest Y value to allow

Type:

float in [-1000, 1000], default 0.0

max_z#

Highest Z value to allow

Type:

float in [-1000, 1000], default 0.0

min_x#

Lowest X value to allow

Type:

float in [-1000, 1000], default 0.0

min_y#

Lowest Y value to allow

Type:

float in [-1000, 1000], default 0.0

min_z#

Lowest Z value to allow

Type:

float in [-1000, 1000], default 0.0

use_max_x#

Use the maximum X value

Type:

boolean, default False

use_max_y#

Use the maximum Y value

Type:

boolean, default False

use_max_z#

Use the maximum Z value

Type:

boolean, default False

use_min_x#

Use the minimum X value

Type:

boolean, default False

use_min_y#

Use the minimum Y value

Type:

boolean, default False

use_min_z#

Use the minimum Z value

Type:

boolean, default False

use_transform_limit#

Transform tools are affected by this constraint as well

Type:

boolean, default False

classmethod bl_rna_get_subclass(id, default=None)#
Parameters:

id (string) – The RNA type identifier.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct subclass

classmethod bl_rna_get_subclass_py(id, default=None)#
Parameters:

id (string) – The RNA type identifier.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions