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

スクリプト言語

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

WheelHit.collider

public var collider: Collider;

Description

ホイールにあたっているCollider

	// When attached to the WheelCollider, modifies tire friction based on
	// static friction of the ground material.
	function FixedUpdate() {
		var hit : WheelHit;
		var wheel : WheelCollider = GetComponent(WheelCollider);
		if( wheel.GetGroundHit( hit ) ) {
			wheel.forwardFriction.stiffness = hit.collider.material.staticFriction;
			wheel.sidewaysFriction.stiffness = hit.collider.material.staticFriction;
		}
	}