You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently trying to get rid of fake mouse input events generated by touch events on windows.
There seems to have been a fix for this in place some time ago, but it is currently commented out in the engine source:
#if WINVER >= 0x0601
// ORION - REMOVED FOR WACOM SUPPORT!/* if (IsFakeMouseInputMessage(msg)) { return 0; }*/
#endif
And returning true ("handled") for these events in your plugin doesn't work because it only sets "bMessageExternallyHandled" to true, but this boolean is only considered for events that weren't handled by the engine at all.
Is there any other way to fix this while still using the launcher version of the engine?
Here the code I am currently using for detecting fake mouse events:
Hey,
I am currently trying to get rid of fake mouse input events generated by touch events on windows.
There seems to have been a fix for this in place some time ago, but it is currently commented out in the engine source:
And returning true ("handled") for these events in your plugin doesn't work because it only sets "bMessageExternallyHandled" to true, but this boolean is only considered for events that weren't handled by the engine at all.
Is there any other way to fix this while still using the launcher version of the engine?
Here the code I am currently using for detecting fake mouse events:
Thank you
The text was updated successfully, but these errors were encountered: