BastiaanOlij / vehicle-demo

Godot VehicleBody demo project
MIT License
155 stars 36 forks source link

Improving Handling System #3

Open vrai17 opened 6 years ago

vrai17 commented 6 years ago

Is there a chance to improving this car system? Like smooth steering, drift, etc

BastiaanOlij commented 6 years ago

Steering is something that can definitely be improved in the project itself. Right now the steering input is just a direct translation from the joystick input. Drift is a more tricky thing because the in build simulation isn't accurate enough. You can get the car to slide by tweaking the friction settings on the wheels but it is very hard to control. I did read an article by someone who's used the bullet raycast vehicle logic (what this is based on) to create a feedback look and automatically adjust the steering angle to create an arcade style drift but that would require enhancements in Godot itself.