Version: 2020.2
언어: 한국어
public float damping ;

설명

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