言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Rigidbody.drag

Switch to Manual
public var drag: float;

Description

オブジェクトの抵抗

これはオブジェクトを遅くするするために使用することが出来ます The higher the drag the more the object slows down.

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