Is this cloth enabled?
GetComponent(InteractiveCloth).enabled = false;
using UnityEngine; using System.Collections; public class Example : MonoBehaviour { void Example() { GetComponent<InteractiveCloth>().enabled = false; } }
import UnityEngine import System.Collections public class Example(MonoBehaviour): def Example() as void: GetComponent[of InteractiveCloth]().enabled = false