• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

PC Can't change camera view if you changed your alt fire bind

Fixing the KF 2 Spectator camera bindings

Fixing the KF 2 Spectator camera bindings

First find your config files:
C:\Users\{usrename}\Documents\My Games\KillingFloor2\KFGame\Config

Then open KFInput.ini

It is a slightly confusing file to edit...

[Engine.PlayerInput]
Contains the default bindings you can use for reference

Code:
Bindings=(Name="LeftMouseButton",Command="GBA_Fire | SpectatePrevPlayer")
Bindings=(Name="MiddleMouseButton",Command="GBA_SwitchFireMode | SpectateChangeCamMode")
Bindings=(Name="RightMouseButton",Command="GBA_IronsightsToggle | SpectateNextPlayer")

Notice they are bound to two functions...


[KFGame.KFPlayerInput]
Contains the bindings the game actually uses

So my Fixed binsings are these

Code:
Bindings=(Name="LeftMouseButton",Command="GBA_Fire | SpectatePrevPlayer")
Bindings=(Name="MiddleMouseButton",Command="SpectateChangeCamMode")
Bindings=(Name="RightMouseButton",Command="GBA_IronsightsHold | SpectateNextPlayer")
Bindings=(Name="ThumbMouseButton2",Command="GBA_SwitchFireMode | SpectateChangeCamMode")

Or simply add
Code:
 | SpectateNextPlayer
 | SpectateChangeCamMode
To appropriate bindings in your file
 
Last edited:
Upvote 0