Hello, I wonder what's better for moving mouse pointer between these two options:
- Update mouse coords in EACH loop, whether the mouse was moved or not with window.GetInput()
- Update mouse coords only when I get the MouseMove (or MouseMoved idk why there are these two) event, with coords in the event message.
thanks