Mouse-move event?

Hi,

Reading the manual’s “Mouse Support” section I have only found the following list of mouse events:

  • mouse1
  • mouse2
  • mouse3
  • mouse1-up
  • mouse2-up
  • mouse3-up
  • wheel_up
  • wheel_down

But I have not found anything about a mouse-move event. Is there even one, or do I have to check every frame if the cursor has moved?

There is not an explicit mouse-move event; you have to check for this every frame. Presumably, with a highly interactive application like most 3-d apps, the mouse will be moving pretty much every frame anyway.

David

Ok! Thank you, anyway :slight_smile: