You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TheSuperHackers @info the scroll multiplier is used to rescale scroll settings so keyboard scrolling is faster and RMB scrolling matches 30FPS behaviour
66
+
// The value 2.0 was chosen as the default scroll factor of 50 sets m_keyboardscrollfactor to 0.5f.
67
+
CONSTEXPR const Real SCROLL_MULTIPLIER = 2.0f;
68
+
CONSTEXPR const Real SCROLL_AMT = 100.0f * SCROLL_MULTIPLIER;
// TheSuperHackers @tweak Rescale the scroll factor so the default scroll speed at 50 will result in the RMB scrolling being identical to the original 30FPS retail behavior
// TheSuperHackers @info the scroll multiplier is used to rescale scroll settings so keyboard scrolling is faster and RMB scrolling matches 30FPS behaviour
66
+
// The value 2.0 was chosen as the default scroll factor of 50 sets m_keyboardscrollfactor to 0.5f.
67
+
CONSTEXPR const Real SCROLL_MULTIPLIER = 2.0f;
68
+
CONSTEXPR const Real SCROLL_AMT = 100.0f * SCROLL_MULTIPLIER;
// TheSuperHackers @tweak Rescale the scroll factor so the default scroll speed at 50 will result in the RMB scrolling being identical to the original 30FPS retail behavior
0 commit comments