Hey,
is there an option to increase the camera rotation speed, because it is slow?
Edit: No options? Bad!
[Camera] Rotation speed?
Bierdeife
InStars
I've run on the same issue when I played Guild Wars 1 after a long time of Guild Wars 2 that has the option to change that.
However I found a workaround for this issue. I've found an autohotkey script to make the whole system sensitivity change while I hold the right mouse button, when I release it, the sensitivity goes back to normal.
Sorry for thread necromancy, google brought me here
However I found a workaround for this issue. I've found an autohotkey script to make the whole system sensitivity change while I hold the right mouse button, when I release it, the sensitivity goes back to normal.
Code:
; The first parameter is always 0x71 (SPI_SETMOUSESPEED). ; The third parameter is the speed (range is 1-20, 10 is default). ~RButton:: DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 16, UInt, 0) KeyWait RButton ; This prevents keyboard auto-repeat from doing the DllCall repeatedly. return RButton up::DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 10, UInt, 0)
Sorry for thread necromancy, google brought me here