Author Topic: How do I modify the physics code in the vehicle, "The Bug." ?  (Read 306 times)

In Mr.Lol's video,

https://www.youtube.com/watch?v=8OgP7YB2CDM

his car, or "bug" is bouncing up and down.
I read in the comments, this guy named Nick Smith said:
"Modifying the physics code of the springs (suspension)."

I've found the code:
datablock WheeledVehicleSpring(bugSpring)
{
   // Wheel suspension properties
   length = 0.4;          // Suspension travel
   force = 4000; //3000;       // Spring force
   damping = 700; //600;       // Spring damping
   antiSwayForce = 4; //3;       // Lateral anti-sway force

how do i change it so it bounces like his in the video?

Lower the value of "force" until it's how you want it.

you could try using the commented values