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.

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();
		}
	}