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.

阻力可用来减缓物体的速度。阻力越高物体减慢越快。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OpenParachute() {
		rigidbody.drag = 20;
	}
	void Update() {
	if (Input.GetButton("Space"))
		OpenParachute();

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

function Update() {
	if (Input.GetButton ("Space")) {
		OpenParachute();
	}
}
最后修改:2011年1月29日 Saturday 15:58

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。