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.

Rigidbody.drag

Switch to Manual
public var drag: float;

Description

The drag of the object.

Drag can be used to slow down an object. The higher the drag the more the object slows down.

	function OpenParachute() {
		rigidbody.drag = 20;
	}
	
	function Update() {
		if (Input.GetButton ("Space")) {
			OpenParachute();
		}
	}