5
votes
6answers
959 views
How do I get rid of the mouse cursor in full-screen exclusive mode?
I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no p …
0
votes
How do I get rid of the mouse cursor in full-screen exclusive mode?
I think I've finally found the solution:
System.setProperty("apple.awt.fullscreenhidecursor","true");
This is an Apple-proprietary system property that hides the m …
