You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Fix relative mouse motion when captured in HTML5 platform
This commit is contained in:
@@ -204,7 +204,7 @@ static EM_BOOL _mousemove_callback(int event_type, const EmscriptenMouseEvent *m
|
|||||||
ev->set_position(pos);
|
ev->set_position(pos);
|
||||||
ev->set_global_position(ev->get_position());
|
ev->set_global_position(ev->get_position());
|
||||||
|
|
||||||
ev->set_relative(ev->get_position() - _input->get_mouse_position());
|
ev->set_relative(Vector2(mouse_event->movementX, mouse_event->movementY));
|
||||||
_input->set_mouse_position(ev->get_position());
|
_input->set_mouse_position(ev->get_position());
|
||||||
ev->set_speed(_input->get_last_mouse_speed());
|
ev->set_speed(_input->get_last_mouse_speed());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user