Overview
how to edit sensitivity of gamepads
Instructions
Edit Input.ini, which is located at %LOCALAPPDATA%BANDAI NAMCO EntertainmentACE COMBAT 7Config
Add this to the bottom of the file:
[/script/engine.inputsettings]
AxisConfig=(AxisKeyName=”Gamepad_LeftX”,AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_LeftY”,AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_RightX”,AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_RightY”,AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False))
I wanted the Left stick to have a sensitivity of 0.9 and the Right stick to have a sensitivity of 0.4, so I changed it to this:
[/script/engine.inputsettings]
AxisConfig=(AxisKeyName=”Gamepad_LeftX”,AxisProperties=(DeadZone=0.250000,Sensitivity=0.900000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_LeftY”,AxisProperties=(DeadZone=0.250000,Sensitivity=0.900000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_RightX”,AxisProperties=(DeadZone=0.250000,Sensitivity=0.400000,Exponent=1.000000,bInvert=False))
AxisConfig=(AxisKeyName=”Gamepad_RightY”,AxisProperties=(DeadZone=0.250000,Sensitivity=0.400000,Exponent=1.000000,bInvert=False))
Of course you can adjust that to suit your own preferred feel.
Have fun!