
PyGame on Reddit
Monthly /r/PyGame Showcase - Show us your current project (s)! Please use this thread to showcase your current project (s) using the PyGame library.
Is PyGame still alive? : r/Python - Reddit
But since such a game development project is on the horizon after all these years, I was wondering if PyGame can still be up for the task with Python 3.x? Or is there a better Python library available …
What are the biggest ever games made with Python and/or Pygame?
There are lists of games on itch.io that have been tagged as being made with Pygame, and the Pygame site has its own list of games as well. These lists seem to be "games that are made entirely in Python …
Pygame escape key exit not working : r/learnpython - Reddit
Jul 8, 2019 · Most pygame tutorials seem to suggest exiting by calling pygame.quit () and then sys.exit () . I have personally run into problems (was on a unix system though) where this still did not close the …
What is pygame.SRCALPHA? : r/pygame - Reddit
Jan 15, 2024 · In pygame.Surface((width, height), pygame.SRCALPHA, 32) the 32 indicates the bit-depth, 32 bits of data per pixel, which is a concept that is slightly above my head but I actually think …
Which IDE should I use to develop a game in Pygame? - Reddit
Sep 8, 2021 · Which IDE should I use to develop a game in Pygame? I want to develop a minigame in Python using the Pygame library. I have tried using PyCharm and Jupyter notebook, but both of …
Maximized Window in pygame : r/pygame - Reddit
Apr 7, 2023 · DISPLAYSURF = pygame.display.set_mode((0, 0), pygame.FULLSCREEN) With simple questions like these, you're better off using Google or even using the search function on reddit.
Should I focus on C# or Pygame? : r/gamedev - Reddit
Mar 20, 2023 · Python + pygame is fine for hobby projects as you learn to program however. For a new developer with a focus on game dev work I'd have a hard time suggesting anything other than Unity.
How to *open* pygame? : r/pygame - Reddit
Dec 9, 2022 · Pygame is not something to open. It is a module that, once you import it, gives you a suite of functions, etc that make coding games easier. In other words, you "open" it by opening your code …
What is the best way to learn pygame? : r/pygame - Reddit
Pygame provides easy means to create a window, draw stuff in that window, play sounds, take keyboard, mouse, and even controller input, and that's about it. The rest of what uses those tools to …