mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 16:13:08 +00:00
Fix graphic tablet input coordinates on Windows.
This commit is contained in:
parent
bcb6a99154
commit
1c8d3ab94f
10
platform/windows/os_windows.cpp
Normal file → Executable file
10
platform/windows/os_windows.cpp
Normal file → Executable file
@ -556,8 +556,14 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
||||
|
||||
mm->set_button_mask(last_button_state);
|
||||
|
||||
mm->set_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
|
||||
mm->set_global_position(Vector2(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
|
||||
POINT coords; //client coords
|
||||
coords.x = GET_X_LPARAM(lParam);
|
||||
coords.y = GET_Y_LPARAM(lParam);
|
||||
|
||||
ScreenToClient(hWnd, &coords);
|
||||
|
||||
mm->set_position(Vector2(coords.x, coords.y));
|
||||
mm->set_global_position(Vector2(coords.x, coords.y));
|
||||
|
||||
if (mouse_mode == MOUSE_MODE_CAPTURED) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user