Version: Unity 6 Preview (6000.0)
LanguageEnglish
  • C#

Cloth.damping

Switch to Manual
public float damping;

Description

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;

public class Example : MonoBehaviour { void Start() { GetComponent<Cloth>().damping = 1; } }