Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

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.

var rb: Rigidbody;

function Start() { rb = GetComponent.<Rigidbody>(); }

function OpenParachute() { rb.drag = 20; }

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