Python Forum
Problem with pygame not switching the mouse image
Thread Rating:
  • 2 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Problem with pygame not switching the mouse image
#2
First of all you should never load an image more than once. As you have it here, you are loading the images every event, This is a big NO NO in gaming or in any GUI. You should never have a resource load within the while loop. In addition to that it is a massive bottleneck you have created. Which is why it slows down. This has nothing to do with python/pygame this is just straight GUI and gaming. So if you move on to another language the same rule applies.

Second of all... pygame supports basic cursor change
https://www.pygame.org/docs/ref/cursors.html

If you want complex or an image in place of your cursor, you load the image and center the image to the cursor position. Then you make the actual cursor disappear. Not sure how you are doing it as you dont show the whole code. But just figured i would add that.
mekire has an example here. Press the number keys to change to the various mouse cursors.
Recommended Tutorials:
Reply


Messages In This Thread
RE: Problem with pygame not switching the mouse image - by metulburr - Jul-25-2017, 03:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Issue with GUI screen switching in Python QT5 code greenelephant 1 263 Apr-04-2024, 09:58 PM
Last Post: deanhystad
  Switching from tkinter to gtk is difficult! snakes 1 1,473 Aug-08-2022, 10:35 PM
Last Post: woooee
  [Tkinter] canvas image problem DPaul 4 6,520 Nov-24-2021, 07:06 AM
Last Post: DPaul
  Problem about image and button scotesse 5 3,011 Apr-27-2020, 10:09 AM
Last Post: scotesse
  [Tkinter] Unable to Access global Variable when switching between frames tziyong 1 3,497 Nov-03-2019, 01:08 AM
Last Post: balenaucigasa
  [Tkinter] Call a function when switching layouts 4096 0 3,547 Sep-22-2019, 07:39 PM
Last Post: 4096
  [PyGUI] Switching between two frames using Tkinter jenkins43 1 4,643 Jul-17-2019, 10:53 AM
Last Post: metulburr
  [Tkinter] switching frames nick123 2 7,934 Apr-18-2019, 04:50 PM
Last Post: francisco_neves2020
  [Tkinter] Problem loading an image from directory into a Canvas object tiotony 3 3,878 Sep-02-2018, 06:47 PM
Last Post: woooee

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020