From 8bd289bc73175be477b182ca4d92cb0944fbfe17 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 26 Mar 2023 15:04:07 +0200 Subject: Move the side_friction_stiffness init to the WheelTuning --- examples3d/vehicle_controller3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples3d') diff --git a/examples3d/vehicle_controller3.rs b/examples3d/vehicle_controller3.rs index fec675a..1228c82 100644 --- a/examples3d/vehicle_controller3.rs +++ b/examples3d/vehicle_controller3.rs @@ -44,7 +44,7 @@ pub fn init_world(testbed: &mut Testbed) { ]; for pos in wheel_positions { - vehicle.add_wheel(pos, -Vector::y(), Vector::z(), hh, hh / 4.0, 1.0, &tuning); + vehicle.add_wheel(pos, -Vector::y(), Vector::z(), hh, hh / 4.0, &tuning); } /* -- cgit