Turkey Legs 27 2018년 1월 4일 오전 5시 42분
Invert Y axis (reverse mouse) for games that do not support invert Y
I play ALL my 1st and 3rd person shooters with invet y axis (Reverse mouse up/down reversed) and man ive tried sakasa and about 6 different invert mouse programs but i can only get the mouse pointer inverted in windows,when i launch games, the mouse pointer is still inverted,but in game mouse look does NOT invert..... Can anyone help me out here? Is there an easy program to get reverse mouse (invert Y) IN GAMES ??? Please provide me help if you can, thanks.
< >
전체 댓글 11개 중 1~11개 표시 중
Weedooman 2018년 11월 28일 오전 8시 51분 
If the game uses DirectInput try GlovePie with this script:

// Inverts the Mousemovement, toggle with Keys LeftControl+T if Keyboard.LeftControl && Keyboard.T then //edit the Keys in this line var.invert = not var.invert wait 250ms end if if var.invert = true then mouse.SwallowMovement = true mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) // mouse.DirectInputX = mouse.DirectInputX - Delta (mouse1.DirectInputX) else mouse.SwallowMovement = false endif

If you remove "//" before "mouse.DirectInputX=..." the X axis is inverted as well.
You can edit which keys toggle the invertion.
If you run the script, nothing change until you hit the keys to toggle the invertion.
So you can run the script, start your game and activate when needed.
Turkey Legs 27 2018년 11월 29일 오전 2시 02분 
Weedooman님이 먼저 게시:
If the game uses DirectInput try GlovePie with this script:

// Inverts the Mousemovement, toggle with Keys LeftControl+T if Keyboard.LeftControl && Keyboard.T then //edit the Keys in this line var.invert = not var.invert wait 250ms end if if var.invert = true then mouse.SwallowMovement = true mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) // mouse.DirectInputX = mouse.DirectInputX - Delta (mouse1.DirectInputX) else mouse.SwallowMovement = false endif

If you remove "//" before "mouse.DirectInputX=..." the X axis is inverted as well.
You can edit which keys toggle the invertion.
If you run the script, nothing change until you hit the keys to toggle the invertion.
So you can run the script, start your game and activate when needed.
TYVM for the help / info
Len 2019년 7월 6일 오전 4시 48분 
I almost got this working finally with that script you shared. Y axis is inverted but X axis doesnt move at all, is there any way to edit it somehow so that X axis moves normally and Y axis is inverted?

Weedooman님이 먼저 게시:
If the game uses DirectInput try GlovePie with this script:

// Inverts the Mousemovement, toggle with Keys LeftControl+T if Keyboard.LeftControl && Keyboard.T then //edit the Keys in this line var.invert = not var.invert wait 250ms end if if var.invert = true then mouse.SwallowMovement = true mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) // mouse.DirectInputX = mouse.DirectInputX - Delta (mouse1.DirectInputX) else mouse.SwallowMovement = false endif

If you remove "//" before "mouse.DirectInputX=..." the X axis is inverted as well.
You can edit which keys toggle the invertion.
If you run the script, nothing change until you hit the keys to toggle the invertion.
So you can run the script, start your game and activate when needed.
mmustric 2020년 11월 30일 오후 4시 38분 
Len, the below script inverts the mouse in the Y axis but keeps the X axis in normal shape. I see a a guy named THEY'WOR also came up with a similar idea too on the star citizen forums. For me though this isnt perfect and in some games like Evil Possession it makes the vertical movement jittery.

if Keyboard.LeftControl && Keyboard.T then //edit the Keys in this line
var.invert = not var.invert
wait 250ms
end if


if var.invert = true then
mouse.SwallowMovement = true
mouse.DirectInputY = mouse.DirectInputY - 2* Delta (mouse1.DirectInputY)
mouse.DirectInputX = mouse.DirectInputX + Delta (mouse1.DirectInputX)
else
mouse.SwallowMovement = false
endif
mmustric 님이 마지막으로 수정; 2020년 11월 30일 오후 5시 05분
76561198326684142 2021년 9월 19일 오후 2시 24분 
Try this method. Worked perfectly for me. The best thing about this method is it will only invert the pointer when it's not visible. So your desktop and even the in-game menus will be unaffected.

https://www.reddit.com/r/Genshin_Impact/comments/prgfwn/mouse_yaxis_invert_solution/
mmustric 2021년 9월 19일 오후 9시 45분 
Firestorm I have been searching for something like this for many years to play games that do not support invert mouse. This is the only solution that has ever worked where the mouse movement was smooth. Thanks so much!!
Mr.Lemon 2022년 6월 29일 오전 3시 56분 
Weedooman님이 먼저 게시:
If the game uses DirectInput try GlovePie with this script:

// Inverts the Mousemovement, toggle with Keys LeftControl+T if Keyboard.LeftControl && Keyboard.T then //edit the Keys in this line var.invert = not var.invert wait 250ms end if if var.invert = true then mouse.SwallowMovement = true mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY) // mouse.DirectInputX = mouse.DirectInputX - Delta (mouse1.DirectInputX) else mouse.SwallowMovement = false endif

If you remove "//" before "mouse.DirectInputX=..." the X axis is inverted as well.
You can edit which keys toggle the invertion.
If you run the script, nothing change until you hit the keys to toggle the invertion.
So you can run the script, start your game and activate when needed.

i couldnt' use it can u help me pls?
mmustric 2022년 6월 29일 오후 7시 44분 
Mr Lemon, The GlovePie method doesn't work. I spent countless hours trying to tweak it but its no good. The only method that I have found after searching for about 8 years which works perfectly and is smooth is this:
https://www.reddit.com/r/Genshin_Impact/comments/prgfwn/mouse_yaxis_invert_solution/
sareks 2024년 5월 1일 오전 6시 18분 
Hi, I'm having the same problem, any simple and quick fix? Thanks
mmustric 2024년 5월 19일 오전 11시 42분 
Sareks did you try the link above? Method works perfect. I use it all the time in games.
sareks 2024년 5월 26일 오전 9시 56분 
It doesn't seem to work for Tower of Portal for me. Would anyone be able to try it and let me know? Thanks
< >
전체 댓글 11개 중 1~11개 표시 중
페이지당 표시 개수: 1530 50

게시된 날짜: 2018년 1월 4일 오전 5시 42분
게시글: 11