Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

InteractiveCloth.DetachFromCollider

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function DetachFromCollider(collider: Collider): void;
public void DetachFromCollider(Collider collider);
public def DetachFromCollider(collider as Collider) as void

Description

Detaches a collider from the cloth object.

See Also: AttachToCollider function.

	// Delete a collider that is attached to this transform's cloth
	// by searching for its name.

var colliderName = "GameObject collider"; function Start() { var colliderToRemove : Collider = GameObject.Find(colliderName) as Collider; transform.GetComponent(InteractiveCloth).DetachFromCollider(colliderToRemove); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public string colliderName = "GameObject collider";
    void Start() {
        Collider colliderToRemove = GameObject.Find(colliderName) as Collider;
        transform.GetComponent<InteractiveCloth>().DetachFromCollider(colliderToRemove);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public colliderName as string = 'GameObject collider'

	def Start() as void:
		colliderToRemove as Collider = (GameObject.Find(colliderName) as Collider)
		transform.GetComponent[of InteractiveCloth]().DetachFromCollider(colliderToRemove)