Disable Vehicle Camera Auto-Centering
Disable Vehicle Camera Auto-Centering
Simple AutoHotkey toggle script to stop the camera from auto-centering (automatically facing forwards) while driving.
This is not actually a mod per se, but a script you can enter into AutoHotkey (search and download it if you’re not already familiar with the program) to disable the camera from automatically facing forwards while you drive if you don’t move the mouse for a few seconds.
You will need AutoHotkey for this to work. Copy and paste the below as your script and have it running while you play. Once you get in the car, simply press the middle mouse button to begin the script that slightly moves your camera up and down every half-second. It won’t even be noticeable as you drive, but will keep the camera from auto-centering. Then when you exit the car, press middle mouse again to stop the camera movement. You can replace “MButton” in the script with any other button or key you might prefer.
#IfWinActive Cyberpunk 2077 (C) 2020 by CD Projekt RED
Pause On
Loop
{
MouseMove, 0 , 1,, R
Sleep, 900
MouseMove, 0,-1,, R
Sleep, 900
}
MButton::Pause
Return