mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Adjust touchscreen_sensitivity to display density
This commit is contained in:
parent
00a3e6bbd7
commit
fa0745f7da
@ -832,8 +832,8 @@ void TouchScreenGUI::translateEvent(const SEvent &event)
|
||||
m_move_pos = touch_pos;
|
||||
m_pointer_pos[event.TouchInput.ID] = touch_pos;
|
||||
|
||||
// adapt to similar behavior as pc screen
|
||||
const double d = g_settings->getFloat("touchscreen_sensitivity", 0.001f, 10.0f) * 3.0f;
|
||||
const double d = g_settings->getFloat("touchscreen_sensitivity", 0.001f, 10.0f)
|
||||
* 6.0f / RenderingEngine::getDisplayDensity();
|
||||
|
||||
// update camera_yaw and camera_pitch
|
||||
m_camera_yaw_change -= dir_free.X * d;
|
||||
|
Loading…
Reference in New Issue
Block a user