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

Switch to Manual
public bool useGravity;

Description

Should gravity affect the cloth simulation?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { // Dont use gravity on this cloth regardless if is Interactive or Skinned. transform.GetComponent<Cloth>().useGravity = false; } }