ClothCollisionSettings(bpy_struct)

base class — bpy_struct

class bpy.types.ClothCollisionSettings(bpy_struct)

Cloth simulation settings for self collision and collision with other objects

collection

Limit colliders to this Collection

Type:

Collection

collision_quality

How many collision iterations should be done (higher is better quality but slower) (in [1, 32767], default 2)

Type:

int

damping

Amount of velocity lost on collision (in [0, 1], default 1.0)

Type:

float

distance_min

Minimum distance between collision objects before collision response takes effect (in [0.001, 1], default 0.015)

Type:

float

friction

Friction force if a collision happened (higher = less movement) (in [0, 80], default 5.0)

Type:

float

impulse_clamp

Clamp collision impulses to avoid instability (0.0 to disable clamping) (in [0, 100], default 0.0)

Type:

float

self_distance_min

Minimum distance between cloth faces before collision response takes effect (in [0.001, 0.1], default 0.015)

Type:

float

self_friction

Friction with self contact (in [0, 80], default 5.0)

Type:

float

self_impulse_clamp

Clamp collision impulses to avoid instability (0.0 to disable clamping) (in [0, 100], default 0.0)

Type:

float

use_collision

Enable collisions with other objects (default True)

Type:

bool

use_self_collision

Enable self collisions (default False)

Type:

bool

vertex_group_object_collisions

Triangles with all vertices in this group are not used during object collisions (default “”, never None)

Type:

str

vertex_group_self_collisions

Triangles with all vertices in this group are not used during self collisions (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:

bpy.types.Struct

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

Inherited Properties

Inherited Functions

References