Version: 2017.2
public float damping ;

Description

Заглушить движение ткани.

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; } }