World War 3
54 人が評価
Mouse Input Fix
作者: eMiKo
A Simple guide for the Mouse Issues that come with every Unreal Engine Game
   
アワード
お気に入り
お気に入り
お気に入りから削除
What Mouse input issues?
Essentially the way most games, especially Unreal Engine ones handle Mouse Input, is by calculating Mouse Movement pretty far back. Therefore if your CPU cant keep up, itll cause the mouse to slow down.
Thats a yikes isnt it?
But luckily we can fix it!
Fixing the Mouse Issues!
First thing we have to do is get to the games config files.
Which are located here:
C:\Users\%username%\AppData\Local\WW3\Saved\Config\WindowsClient



Once youre there, open GameUserSettings.ini with your notepad and in there we'll search(F3) for "RawMouseInput". It should look like this:



When you have that, change the False to True, behind that add a "," and add "bEnableMouseSmoothing=False".
Make sure there is a , after each command and no spaces. The line should read somethingxyz,RawMouseInputEnabled=True,bEnableMouseSmoothing=False,Invertxyz
Match it with my screenshot if youre confused!



For good measure cause some versions of the Unreal Engine are a bit different and to make sure it works, we can also open input.ini from the same Folder and right beneath [/script/engine.inputsettings] we'll add
RawMouseInputEnabled=True
bEnableMouseSmoothing=False




And thats it, enjoy the game with 0 mouse issues.
Also yes, this works on other Unreal Engine games too.


PS By using this Guide you agree to not shoot at me when Im in your match.
16 件のコメント
CONSTIPATION 2023年2月3日 12時26分 
i have no issue with mouse
eMiKo  [作成者] 2023年1月29日 16時16分 
Yeah! Ive been using it in every Unreal Engine game since a long time ago, works each time : ) Glad its of use to people!!!
✪ Canu 2023年1月29日 14時51分 
wow thanks for that ill use for every unreal engine game!
yeeahboiii 2022年7月16日 22時02分 
universal link is made with %username%

C:\Users\%username%\AppData\Local\WW3\Saved\Config\WindowsClient
eMiKo  [作成者] 2022年7月4日 17時12分 
:csdsmile:
ALCALOID33 2022年7月4日 12時46分 
Thx Bro! You re the best
Krymms 2022年6月21日 9時38分 
This path is easier and you can just paste it into start menu/search
%localappdata%\WW3\Saved\Config\WindowsClient
eMiKo  [作成者] 2022年3月23日 14時36分 
Hmm, its there for me, I wonder if it got phased out with a patch.
If theres no input issues with the first part of the fix then it should be fine, if its still there however, just create an input.ini in that folder and create the entries yourself. Or alternatively put
"[/script/engine.inputsettings]
RawMouseInputEnabled=True
bEnableMouseSmoothing=False"
into the GameUserSettings.ini file at the very bottom. I know UE3 didnt care which files the entries were in, UE4 shouldnt either.
gregor samsa 2022年3月23日 13時24分 
I also don't have input.ini
eMiKo  [作成者] 2022年3月22日 12時36分 
Its in Local, should definetly be there.
Every other Unreal Engine game has their files there too