For those looking to analyze the game's internal data without the source code:
// Steering: Only effective when moving if (Math.abs(speed) > 0.5f) turnAngle += steering * turnSpeed * (speed / maxSpeed); dr driving source code