mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 00:25:19 +02:00
Add mouse_sensitivity option
This commit is contained in:
committed by
Kahrl
parent
bda62bd3bf
commit
822723c246
@@ -2061,7 +2061,8 @@ void the_game(
|
||||
if(input->isKeyDown(irr::KEY_RIGHT))
|
||||
dx += dtime * keyspeed;*/
|
||||
|
||||
float d = 0.2;
|
||||
float d = g_settings->getFloat("mouse_sensitivity");
|
||||
d = rangelim(d, 0.01, 100.0);
|
||||
camera_yaw -= dx*d;
|
||||
camera_pitch += dy*d;
|
||||
if(camera_pitch < -89.5) camera_pitch = -89.5;
|
||||
|
Reference in New Issue
Block a user