Перейти к содержимому
Mineforgian

tweak mouse sensitivity

make a 20000 dpi or even higher mouse works fine in mc

Загрузки
6K
Подписчики
5
Обновлён
20 июня 2026 г.
Лицензия
CC0-1.0

Опубликован 6 января 2025 г.


1.0.0.3

Version id with suffix 'a' means it works like cs series or Apex while 'b' means it's original idea. I'll update both when new mc version release. Chose the version on your own.

1.0.0.2

make the sensitivity procedule same as counterStrike2

1.0.0.1 or below

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:

for versionID with suffix b

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;

for versionID with suffix a somehow make it finnally same as cs2 which is 0.022 * cursorDeltaX|Y

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.

Ченджлог

1.0.0.4bРелиз1.21.8, 1.21.9, 1.21.10 · 13 октября 2025 г.

dump to 1.20.10. mojang moved invertYmouse logic elderly inside update mouse out, so, if u need that and u r using a lower mc version, u may use old 1.0.4b instead

1.0.0.4aРелиз1.21.8, 1.21.9, 1.21.10 · 13 октября 2025 г.

dump to 1.21.10, mojang moved invertYmouse logic elderly inside update mouse out, so, if u need that and u r using a lower mc version, u may use old 1.0.4a instead

1.0.0.4bРелиз1.21.6, 1.21.7, 1.21.8 · 8 сентября 2025 г.

dump to 1.21.8 vanilla like

1.0.0.4aРелиз1.21.6, 1.21.7, 1.21.8 · 8 сентября 2025 г.

dump to 1.21.8 cs like version

1.0.0.3bРелиз1.21.4, 1.21.5, 1.21.6 · 25 июня 2025 г.

Dump to mc 1.21.6. Note: version id with suffix 'a' means it works like cs series or Apex while 'b' means it's original idea. I'll update both when new mc version release. Chose the version on your own.

1.0.0.3aРелиз1.21.4, 1.21.5, 1.21.6 · 25 июня 2025 г.

Dump to mc 1.21.6. Note: version id with suffix 'a' means it works like cs series or Apex while 'b' means it's original idea. I'll update both when new mc version release. Chose the version on your own.

1.0.0.2Релиз1.21.2, 1.21.3, 1.21.4 · 2 мая 2025 г.

make the sensitivity procedure same as counterStrike2 eg.32% in game option now same as 0.32 in CS2

1.0.0.0Релиз1.20.5, 1.20.6 · 12 января 2025 г.

dump to 1.20.5~1.20.6

Комментарии

Загружаем…