Skip to content

Commit

Permalink
Merge pull request #88473 from Sauermann/fix-mouse-event-global-position
Browse files Browse the repository at this point in the history
Fix global position for `InputEventMouse` in `viewport::push_input`
  • Loading branch information
akien-mga committed Feb 18, 2024
2 parents 9f48330 + 8de3991 commit 0c4d8d7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scene/main/viewport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1383,6 +1383,13 @@ Ref<InputEvent> Viewport::_make_input_local(const Ref<InputEvent> &ev) {
}

Transform2D ai = get_final_transform().affine_inverse();
Ref<InputEventMouse> me = ev;
if (me.is_valid()) {
me = me->xformed_by(ai);
// For InputEventMouse, the global position is not adjusted by ev->xformed_by() and needs to be set separately.
me->set_global_position(me->get_position());
return me;
}
return ev->xformed_by(ai);
}

Expand Down

0 comments on commit 0c4d8d7

Please sign in to comment.