Fix SpaceNavigator type 6DOF controllers on Windows.

We were creating the event but never dispatching it.
This commit is contained in:
Jonathan Westhues 2021-01-15 16:50:38 -08:00
parent d6c2983c72
commit 76589a8a87

View File

@ -734,6 +734,11 @@ public:
event.type = SixDofEvent::Type::RELEASE;
event.button = SixDofEvent::Button::FIT;
}
} else {
return 0;
}
if(window->onSixDofEvent) {
window->onSixDofEvent(event);
}
return 0;
}