I've seen many people complain that when you center the driver camera position in VR, it's too far back from the steering wheel. Although you can adjust the seat position with the keyboard, it's a bit annoying having to do that in every session of the game.Here's a small workaround: Locate the game's installation folder and navigate to \lua\ge\extensions\core\cameraModes Open the file driver.lua and find the line self.seatPosition = vec3(0, vehConfig[2], vehConfig[3]) Add a negative offset to the 2nd parameter, eg: self.seatPosition = vec3(0, vehConfig[2]-0.2, vehConfig[3]) 0.2 seems like a good value. Adjust to your liking. Now everytime you hit NUMPAD5 you'll be closer to the steering wheel than with the default configuration. Note that if the game updates this file, you'll unfortunately have to do it again.