Legacy Documentation: Version 4.6.2
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

WheelHit

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Contact information for the wheel, reported by WheelCollider.

Friction for the WheelCollider is computed separately from the rest of the physics, using a slip based tire friction model. This allows for more realistic behaviour, but makes wheel colliders ignore standard PhysicMaterial settings.

The way to simulate different ground materials is to query WheelCollider for its collision information (see WheelCollider.GetGroundHit). Usually you get the other collider the wheel is hitting, and modify wheel's forwardFriction and sidewaysFriction based on ground's material.

The other members of WheelHit structure are usually queried for information purposes or special effects. E.g. a "slipping tire" sound can be played if forwardSlip or sidewaysSlip exceed some threshold.

See Also: WheelCollider.GetGroundHit.

Variables

collider The other Collider the wheel is hitting.
force The magnitude of the force being applied for the contact.
forwardDir The direction the wheel is pointing in.
forwardSlip Tire slip in the rolling direction. Acceleration slip is negative, braking slip is positive.
normal The normal at the point of contact.
point The point of contact between the wheel and the ground.
sidewaysDir The sideways direction of the wheel.
sidewaysSlip Tire slip in the sideways direction.