summaryrefslogtreecommitdiff
path: root/src/touchscreengui.h
diff options
context:
space:
mode:
authorrubenwardy <rubenwardy@gmail.com>2016-12-11 21:57:43 +0000
committerrubenwardy <rubenwardy@gmail.com>2016-12-12 13:20:18 +0000
commit0fdf24d64ab055a97e488eb3775cc7c721156d3c (patch)
treeaa8063616612122eb3ad032c7f1b8202a58ef7e7 /src/touchscreengui.h
parentd9675d3d922a2c8f521102c9386d14c694fda365 (diff)
downloadminetest-0fdf24d64ab055a97e488eb3775cc7c721156d3c.tar.gz
minetest-0fdf24d64ab055a97e488eb3775cc7c721156d3c.tar.bz2
minetest-0fdf24d64ab055a97e488eb3775cc7c721156d3c.zip
Fix camera jumping on Android when panning past 0/360 mark
Diffstat (limited to 'src/touchscreengui.h')
-rw-r--r--src/touchscreengui.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/touchscreengui.h b/src/touchscreengui.h
index d8106a260..b4de1b032 100644
--- a/src/touchscreengui.h
+++ b/src/touchscreengui.h
@@ -147,8 +147,14 @@ public:
void init(ISimpleTextureSource* tsrc);
- double getYaw() { return m_camera_yaw; }
+ double getYawChange() {
+ double res = m_camera_yaw_change;
+ m_camera_yaw_change = 0;
+ return res;
+ }
+
double getPitch() { return m_camera_pitch; }
+
line3d<f32> getShootline() { return m_shootline; }
void step(float dtime);
@@ -170,7 +176,7 @@ private:
bool m_visible; // is the gui visible
/* value in degree */
- double m_camera_yaw;
+ double m_camera_yaw_change;
double m_camera_pitch;
line3d<f32> m_shootline;