Skip to content

Commit

Permalink
Reduce Relative Input Cursor Speed Dramatically
Browse files Browse the repository at this point in the history
This makes it about 1/4th the speed which may be a bit slow, but should
work for most controllers.
  • Loading branch information
JMC47 committed Apr 15, 2019
1 parent 75e7431 commit f3aaf5d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,7 +39,7 @@ class Cursor : public ReshapableInput
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;
Expand Down

0 comments on commit f3aaf5d

Please sign in to comment.