
Is PyGame still alive? : r/Python - Reddit
pygame-ce is active, and it's up to the task of implementing most of the sprite based games that older people know from the arcades or consoles like the sega saturn/megadrive. Get the new …
PyGame on Reddit
I've just started python and my first project was a platformer game written using pygame. Is there any way I could make this game executable on Windows, so that even people who don't have …
How do I receive MOUSEBUTTONDOWN just once? : r/pygame
Jun 20, 2023 · That is incorrect. the pygame.event module handles things in a queue of Event objects. Every time the mouse button is clicked it adds two objects to the queue: …
Which IDE should I use to develop a game in Pygame?
Sep 8, 2021 · VS Code is fine. I used Spyder for developing a pygame application and it was also fine (indeed I really liked it). People do love pycharm and you will get its defenders here. It is …
Advice for using Pygame for iOS games? : r/pygame - Reddit
Oct 3, 2021 · Some of the other replies here suggest that it's not great to start with PyGame if your goal is iOS and from a commercial success perspective I probably agree, but I'm starting …
mouseclick on a surface (or rect) : r/pygame - Reddit
Jan 6, 2021 · Hi there! You need to define a Rect first, which will look like this button = pygame.Rect(pos_x, pos_x, sizex, sizey) And then you can use button.collidepoint(pos) …
Embeding a pygame window into Tkinter : r/pygame - Reddit
Mar 17, 2023 · It is possible, but a bit more janky since pygame upgraded to SDL2. The current branches to re-enable this feature in pygame-ce are paused because the keyboard events for …
How can I fully remove a rect with the kill method? : r/pygame
Feb 22, 2021 · When I test for collisions between my player class and enemies sprite group I use the .kill method on the enemies but only the image gets removed and…
How to host python game on website : r/pygame - Reddit
Jun 2, 2022 · Pygame is not designed for that sort of environment, it uses SDL which is meant to be run natively on a PC. You would find more success using Unity or Godot for creating a …
How do I rotate a Rectangle? : r/pygame - Reddit
Mar 12, 2023 · Only way to rotate a rectangle is to render it onto a surface and then rotate that ('transform module, pygame.transform.rotate. But if you expect pygame's collide_rect to do the …