0 of 0

File information

Last updated

Original upload

Created by

user2046

Uploaded by

user2046

Virus scan

Safe to use

Tags for this mod

About this mod

Disable head bobbing on PC with a simple JSON edit

Permissions and credits
Sometime around update 2.13, the configuration option to disable head bobbing (Additive Camera Motion) disappeared from the menu unless you attached a controller. This simple UserSettings.json edit will allow PC users to turn this feature off without a controller.

1. Open UserSettings.json in a text editor

Windows (steam / GOG): C:\Users\<your_username>\AppData\Local\CD Projekt Red\Cyberpunk 2077

Mod Organizer 2: Click "Tools" then "ini editor" (or you can edit the file using the Windows location above)

2. Search for the node AdditiveCameraMovements
3. change "value" to 0.0
4. ** change "index" to 0
5. Save the json file and close it

** The "values" table lists three possible values for this option. We set the "index" value to 0 because this list is zero-based and that is the location of the value we chose. When finished, the entry should look like this:

{
    "name": "AdditiveCameraMovements",
    "type": "float_list",
    "is_dynamic": false,
    "value": 0.0,
    "index": 0,
    "default_index": 2,
    "values": [
        0.0,
        0.5,
        1.0
    ]
},