Version: 5.6 (switch to 2017.1b)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

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;
using System.Collections;

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