Pygame Change Cursor To Os Cursor
Is there a simple way to use pygame to switch to an OS-defined cursor? For example, switching to the windows loading circle or apple beach-ball when loading, or changing to arrows
Solution 1:
From: link, if anyone still finds it useful:
you can use the pygame.mouse.set_cursor
method with e. g. pygame.SYSTEM_CURSOR_WAIT
as the first argument.
Post a Comment for "Pygame Change Cursor To Os Cursor"