Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
When the alt key is held-down it will invert the mouse. You need to use a key-detect as you don't want the mouse inverted for the menus. It's not perfect and it does appear to swallow too many movements but it is a solution that at least allowed me to play the game when in first person. I'm no expert with GlovePIE, as it's just a brief look, so others may have more to add.
I also use a batch file to start the game, ie
Source: http://glovepie.org/forum/viewtopic.php?f=10&t=183
im unable to make mouse invert working - Win 10 GlovePIE 0.43, 0.45.. i need it without any key press..
var.invert = true
if var.invertMouse = true then
mouse.SwallowMovement = true
mouse.DirectInputY = mouse.DirectInputY - Delta (mouse1.DirectInputY)
mouse.DirectInputX = mouse.DirectInputX + Delta (mouse1.DirectInputX)
else
mouse.SwallowMovement = false
endif
Its still working for you?
https://www.reddit.com/r/Genshin_Impact/comments/prgfwn/mouse_yaxis_invert_solution/
Install the driver within RawAccel_v1.4.4.zip then run the invert mouse program within InvertMouse.zip.
Its perfect. All games that do not support invert mouse are now playable with this.
if Mouse.Button4 then //edit the Keys in this line
var.invert = not var.invert
Pie.MouseDPI = 1000
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
Less hope that someone in future will fix GlovePIe to make it working again.
While you're at it, you'll probably also want to change sense = 50 to something lower. 25 works okay for me.