I want to make a sensitivity slider on my RTS game. But I have no clue how to access the mouse tracking speed on Mac nor how to change it.
Any ideas?
I want to make a sensitivity slider on my RTS game. But I have no clue how to access the mouse tracking speed on Mac nor how to change it.
Any ideas?
One way to change the speed is if you could access the command line with C# and execute
defaults read -g com.apple.mouse.scaling (VALUE)
When (VALUE) is omitted, it shows the current mouse speed.
If there is a macOS terminal/cmd executable, you could try to run the speed change with System.Diagnostics.Process.Start()
as used in this stack overflow question.