应用于布料的恒定外部加速度。
使用它来模拟布料上的恒定力,例如风吹动旗帜。其他资源:Cloth.randomAcceleration。
using UnityEngine;
public class Example : MonoBehaviour { // Make this cloth fall at half speed (if is affected by gravity). void Start() { GetComponent<Cloth>().externalAcceleration = -Physics.gravity / 2; } }