- Home /
Question by
Abacab · May 19, 2015 at 10:29 PM ·
carfrictionwheelwheel collider
Car "burns rubber"
Hello!
When I start accelerating my car seems like it is driving on ice. How do I get more friction when accelerating?
screen-shot-2015-05-20-at-012712.png
(36.2 kB)
Comment
The wheel transforms might be the cause. Anybody know for sure?
public WheelCollider wheelFL;
public Transform wheelFLTrans;
void update () {
// Wheel rotation
wheelFLTrans.Rotate (wheelFL.rpm / 60 * 360 * Time.deltaTime, 0, 0);
}
And obviously the same for the other three wheels.
Answer by zeppike · May 20, 2015 at 08:31 AM
Try to adjust the forvard friction Slip values for a start just zero them out and try to work out the right amount by slowly incrementing the slip.
Your answer
Follow this Question
Related Questions
Best way to make wheels freely turn / swivel? (Like a shopping cart) 2 Answers
Wheel Rotation Wrong 1 Answer
stabilize car? help! 0 Answers
2D anisotropic friction weirdness 1 Answer
Square wheels 4 Answers