ClothSkinningCoefficient
The ClothSkinningCoefficient struct is used to set up how a Cloth component is allowed to move with respect to the SkinnedMeshRenderer it is attached to.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Struct
- Namespace: UnityEngine
- Assembly: UnityEngine.ClothModule
public struct ClothSkinningCoefficient
Remarks
This is set using the _coefficients property on the Cloth component, which is a per-vertex array of ClothSkinningCoefficient structs. Typically, you will not set these values from code, but instead, set them up in the editor which shows up when you look at the Cloth component in the inspector.
Fields
Value | Description |
|---|---|
| collisionSphereDistance | Definition of a sphere a vertex is not allowed to enter. This allows collision against the animated cloth. |
| maxDistance | Distance a vertex is allowed to travel from the skinned mesh vertex position. |