Merge branch 'patch-14' of https://github.com/stefnotch/FlaxEngine into stefnotch-patch-14

This commit is contained in:
Wojtek Figat
2023-11-11 17:52:21 +01:00

View File

@@ -196,6 +196,12 @@ bool WindowsMouse::WndProc(Window* window, const UINT msg, WPARAM wParam, LPARAM
switch (msg)
{
case WM_MOUSEMOVE:
{
OnMouseMove(mousePos, window);
result = true;
break;
}
case WM_NCMOUSEMOVE:
{
OnMouseMove(mousePos, window);
result = true;