
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 …
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.
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 …
Is there a way to make the window resize to fit the monitor? : r/pygame
Scaling games is difficult. You can set the screen size to the monitor size using pygame.display.Info () current_w and current_h. You can also use the highest res suggested mode in …
Need some help with number input : r/pygame - Reddit
Jan 24, 2022 · SCREEN.blit(text, text_rect) pygame.display.update() pygame.quit() The relevant sections are the bit after the check for KEYDOWN, and blitting the text below it. You can probably …
r/pygame on Reddit: How to make a increasing/decreasing …
You can definitely set the volume of music (played with pygame.mixer.music.load ('example')) by calling pygame.mixer.music.set_volume (volume), where volume is a value between 0 and 1.
Pygame? : r/roguelikedev - Reddit
Apr 20, 2021 · As far as I know, pygame is just a wrapper for SDL and can be used for things like graphics, sound, etc. But TCOD is a library that has the stuff you'd be using in your roguelike, like …
Python/pygame on an iPad : r/pygame - Reddit
Nov 20, 2023 · trueIs there any way to code python with pygame on an iPad? I’m not looking to make iOS apps, just wanted to program. I’m in town for the holidays and unfortunately left my laptop at …
Window resizing issue : r/pygame - Reddit
Jul 19, 2023 · Try removing. window = pygame.display.set_mode(event.size, pygame.RESIZABLE) pygame.display.update() Using pygame.display.set_mode create another window/screen. …
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 …