public float damping ;

Descripción

Movimiento del paño húmedo.

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