Select your preferred scripting language. All code snippets will be displayed in this language.
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.
CloseThe pressure inside the cloth.
Pressure simulation only gives reasonable results for closed mesh shapes. Pressure simulation is disabled when this value is set to zero. When it is set to values greater then zero, the cloth is simulated to be a closed shape containing air. A value of 1 sets the air pressure to be the same as the atmosphere outside the cloth mesh. Values smaller then one make the cloth shape contract, values larger then one make it expand.
// On a closhed mesh shape this will make it look inflated. // Think like a balloon for a sphere transform.GetComponent(InteractiveCloth).pressure = 3;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { transform.GetComponent<InteractiveCloth>().pressure = 3; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: transform.GetComponent[of InteractiveCloth]().pressure = 3