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

スクリプト言語

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

Rigidbody.velocity

Switch to Manual
public var velocity: Vector3;

Description

Rigidbodyの速度ベクトル

In most cases you should not modify the velocity directly, as this can result in unrealistic behaviour. Don't set the velocity of an object every physics step, this will lead to unrealistic physics simulation. A typical example where you would change the velocity is when jumping in a first person shooter, because you want an immediate change in velocity.

	function FixedUpdate () {
		if (Input.GetButtonDown ("Jump")) {
			rigidbody.velocity = Vector3(0,10,0);
		}
	}