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.externalAcceleration

Switch to Manual
public Vector3 externalAcceleration;

Description

A constant, external acceleration applied to the cloth.

Use this to simulate constant forces on the cloth, such as wind waving a flag. See Also: Cloth.randomAcceleration.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { transform.GetComponent<Cloth>().externalAcceleration = -Physics.gravity / 2; } }