Rigidbody.drag Manual     Reference     Scripting  
Scripting > Runtime Classes > Rigidbody
Rigidbody.drag

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.

JavaScript
function OpenParachute() {
rigidbody.drag = 20;
}

function Update() {
if (Input.GetButton ("Space")) {
OpenParachute();
}
}