Merge pull request #10106 from BastiaanOlij/ios_fix_buttons
iOS copy touch coordinate as is
This commit is contained in:
commit
19231aa80f
1 changed files with 3 additions and 5 deletions
|
|
@ -224,11 +224,9 @@ void OSIPhone::mouse_button(int p_idx, int p_x, int p_y, bool p_pressed, bool p_
|
|||
|
||||
Ref<InputEventMouseButton> ev;
|
||||
ev.instance();
|
||||
// swaped it for tilted screen
|
||||
//ev->get_pos().x = ev.mouse_button.global_x = video_mode.height - p_y;
|
||||
//ev->get_pos().y = ev.mouse_button.global_y = p_x;
|
||||
ev->set_position(Vector2(video_mode.height - p_y, p_x));
|
||||
ev->set_global_position(Vector2(video_mode.height - p_y, p_x));
|
||||
|
||||
ev->set_position(Vector2(p_x, p_y));
|
||||
ev->set_global_position(Vector2(p_x, p_y));
|
||||
|
||||
//mouse_list.pressed[p_idx] = p_pressed;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue