Damp cloth motion.
Set this to damp the motions of a cloth instance. Must be between zero and one. Setting this to zero will disable cloth damping.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { transform.GetComponent<Cloth>().damping = 1; } }