Version: 2022.3
LanguageEnglish
  • C#

WheelHit

struct in UnityEngine

/

Implemented in:UnityEngine.VehiclesModule

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

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> 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 the wheel's WheelCollider.forwardFriction and WheelCollider.sidewaysFriction based on the physic material of the ground.

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

Additional resources: WheelCollider.GetGroundHit.

Properties

colliderThe other Collider the wheel is hitting.
forceThe magnitude of the force being applied for the contact.
forwardDirThe direction the wheel is pointing in.
forwardSlipTire slip in the rolling direction. Acceleration slip is negative, braking slip is positive.
normalThe normal at the point of contact.
pointThe point of contact between the wheel and the ground.
sidewaysDirThe sideways direction of the wheel.
sidewaysSlipTire slip in the sideways direction.