Hello, community.
I’m wondering if there is any way to disable visibility of the mouse icon.
What I’m trying to do is to replace the mouse icon with a loaded image.
Right now I have the image positioned (mouseX,mouseY) and following the mouse
however the look of mouse icon is annoying me.
Any suggestions? Thanks! :oops:
theo
2
ofHideCursor() should do the trick!

Theo
ofHideCursor() worked perfectly!
Thanks so much!

plong0
4
Also, if you would just like to change the cursor but not hide it, check out the glutSetCursor(GLUT_CURSOR_CROSSHAIR); function…
Full list of suported cursors:
http://pyopengl.sourceforge.net/documentation/manual/glutSetCursor.3GLUT.html
Oh sweet!! Hiding the cursor did the job for this one, but I will definitely try them.
Thanks a lot for the reference.