We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f153f0 commit 99fc9acCopy full SHA for 99fc9ac
Source/RunActivity/Viewer3D/RollingStock/MSTSLocomotiveViewer.cs
@@ -2340,7 +2340,7 @@ public virtual int GetDrawIndex()
2340
/// </summary>
2341
float NormalizedMouseMovement()
2342
{
2343
- var mouseWheelChange = (UserInput.IsDown(UserCommand.GameSwitchWithMouse) ? UserInput.MouseWheelChange : 0) / 5;
+ var mouseWheelChange = (UserInput.IsDown(UserCommand.GameSwitchWithMouse) ? UserInput.MouseWheelChange : 0) / 10;
2344
return (ControlDiscrete.Orientation > 0
2345
? (float)(UserInput.MouseMoveY + mouseWheelChange) / (float)Control.Height
2346
: (float)(UserInput.MouseMoveX + mouseWheelChange) / (float)Control.Width)
0 commit comments