Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

InteractiveCloth.attachmentTearFactor

Switch to Manual
var attachmentTearFactor: float;
float attachmentTearFactor;
attachmentTearFactor as float

Description

How far attached rigid bodies need to be stretched, before they will tear off.

Must be larger then zero. Larger values make the cloth stretch further without tearing. Only has an affect for rigid bodies which have been attached with the tearable parameter set.

See Also: AttachToCollider function.

	transform.GetComponent(InteractiveCloth).attachmentTearFactor = 10;
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        transform.GetComponent<InteractiveCloth>().attachmentTearFactor = 10;
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		transform.GetComponent[of InteractiveCloth]().attachmentTearFactor = 10