Will the cloth collide with itself?
GetComponent(InteractiveCloth).selfCollision = false;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { GetComponent<InteractiveCloth>().selfCollision = false; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: GetComponent[of InteractiveCloth]().selfCollision = false