Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Cloth.useGravity

マニュアルに切り替える
public bool useGravity;

説明

重力が布シミュレーションに影響するかどうか。

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