the dpi range provided by the mouse is going higher and higher, the origin mouse sensitivity procedure is not working cool when u set dpi to value like 20000. this mod only do one simple thing: multiply the origin mouse sensitivity by itself when processing
Original Code:
Double value = that.client.options.getMouseSensitivity().getValue();
double d = value * 0.6F + 0.2F;
double e = d * d * d;
double f = e * 8.0;
i = that.cursorDeltaX * f;
j = that.cursorDeltaY * f;
Modified Code:
Double value = that.client.options.getMouseSensitivity().getValue();
double d = value * 0.6F + 0.2F;
double e = d * d * d * value; // Multiply e by mouseSensitivity
double f = e * 8.0;
i = that.cursorDeltaX * f;
j = that.cursorDeltaY * f;
The variables i
and j
are ultimately added to your look direction. f
is used for non-spyglass views, while e
is used for spyglass views.
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Compatibility
Minecraft: Java Edition
1.20.1–1.20.6
Platforms
Fabric
Supported environments
Creators
Details
Licensed CC0-1.0
Published 3 days ago
Updated 8 hours ago