Mouse Cursor

Hi, another short question:

Is it possible to restore the mouse pointer (which disapears if a JME window opens)? I would like to open a 3d window from a swing application, but as soon as it is open the mouse cursor disapears. This behavior is also inconvenient for debugging a SimpleGame derivative (because you completely lock the system, if the code reaches a breakpoint and one has no pointer device any more to control the debugger).



Greetings,

Marcus

That latter problems exists only on linux (and mac?) btw. Nevertheless you can release the system mouse cursor by calling

MouseInput.get().setCursorVisible( true );



(This is not related to physics, is it? :))
1 Like

Great! Thank's a lot  :slight_smile: