summaryrefslogtreecommitdiff
path: root/core/os
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2017-03-22 21:18:47 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2017-03-22 21:36:52 +0100
commitf5004b78d0468641cd03619ecfecb42429621a70 (patch)
tree42011a7bf4ab8b602899e9d3dacbc1fdeb21952f /core/os
parent33a2c5def0f55ef67196e35ac3309d3f9b70d967 (diff)
Implement warped mouse panning for 2D & 3D editors
Enabled by default as in Blender, but can be disabled separately for 2D & 3D; the core functionality is in Input so this could be reused or even exposed to scripts in the future
Diffstat (limited to 'core/os')
-rw-r--r--core/os/input.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/os/input.h b/core/os/input.h
index 2f6359632e..3c33c46eba 100644
--- a/core/os/input.h
+++ b/core/os/input.h
@@ -81,6 +81,7 @@ public:
virtual int get_mouse_button_mask() const = 0;
virtual void warp_mouse_pos(const Vector2 &p_to) = 0;
+ virtual Point2i warp_mouse_motion(const InputEventMouseMotion &p_motion, const Rect2 &p_rect) = 0;
virtual Vector3 get_gravity() const = 0;
virtual Vector3 get_accelerometer() const = 0;