1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-27 17:28:41 +00:00

Fix TouchScreenGUI ignoring server-sent pitch changes

This commit is contained in:
Gregor Parzefall 2023-12-19 20:35:50 +01:00 committed by sfan5
parent 47e557b96a
commit 04dc4a10f0
3 changed files with 8 additions and 4 deletions

View file

@ -171,7 +171,11 @@ public:
return res;
}
double getPitch() { return m_camera_pitch; }
double getPitchChange() {
double res = m_camera_pitch_change;
m_camera_pitch_change = 0;
return res;
}
/**
* Returns a line which describes what the player is pointing at.
@ -213,7 +217,7 @@ private:
// value in degree
double m_camera_yaw_change = 0.0;
double m_camera_pitch = 0.0;
double m_camera_pitch_change = 0.0;
/**
* A line starting at the camera and pointing towards the selected object.