To change the cursor, you must use the scene.setCursor(String) method.
To change the image
Using the link to your current scene, go to Cursor.cursor("url") in setCursor :
scene.setCursor(Cursor.cursor("url"));
To remove the cursor
Using the link to your current scene, go to Cursor.NONE in setCursor :
scene.setCursor(Cursor.NONE);
You may also be interested in the value of Cursor.CROSSHAIR
source share