Hey,
is there an option to increase the camera rotation speed, because it is slow?
Edit: No options? Bad!
B
; 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)
