Reduce Relative Input Cursor Speed Dramatically

This makes it about 1/4th the speed which may be a bit slow, but should
work for most controllers.
This commit is contained in:
JMC47 2019-04-15 16:46:13 -04:00
parent 75e74315e6
commit f3aaf5deaa
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public:
private:
// This is used to reduce the cursor speed for relative input
// to something that makes sense with the default range.
static constexpr double STEP_PER_SEC = 0.04 * 200;
static constexpr double STEP_PER_SEC = 0.01 * 200;
// Smooth out forward/backward movements:
static constexpr double STEP_Z_PER_SEC = 0.05 * 200;