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

スクリプト言語

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

ControllerColliderHit.moveLength

public var moveLength: float;

Description

コライダーにヒットするまでに、キャラクターがどのくらいの距離を移動したか。

Note that this can is different from what you pass to CharacterController.Move, because all movement is constrained by collisions.

	function OnControllerColliderHit(hit : ControllerColliderHit) {
		Debug.Log(hit.moveLength);
	}