pygame-ce icon indicating copy to clipboard operation
pygame-ce copied to clipboard

🐍🎮 pygame - Community Edition is a FOSS Python library for multimedia applications (like games). Built on top of the excellent SDL library.

Results 348 pygame-ce issues
Sort by recently updated
recently updated
newest added
trafficstars

## Context Following our discussion in #2208 regarding multi-draw functions, it's evident that having numerous APIs for multi-operation tasks doesn't align with our goal of optimizing performance. This was particularly...

Performance
enhancement
New API
geometry

Port of https://github.com/pygame/pygame/pull/3744

New API
math

- [ ] `SDL_VIDEODRIVER`->`SDL_VIDEO_DRIVER` (https://github.com/libsdl-org/SDL/issues/11115)

Not complete
sdl3
blocking

I know `get_surface` was added with similarity to `pygame.display` in mind, but I think having this as a property instead can make things easier and neater for users of this...

New API
window

This could have a lot of uses, specifically for pixel art games. ![image](https://github.com/pygame-community/pygame-ce/assets/129836777/8d8810f7-47b5-415d-b88a-cb326fc781f4) Here is my proposed API design. ```python font = pygame.Font(None, 25); font.font_hinting = pygame.FONT_HINTING_NORMAL; ``` I would...

enhancement
font

This should probably happen after https://github.com/pygame-community/pygame-ce/pull/2557, let that get resolved first. We have mac specific assets: src_py/pygame_icon_mac.bmp src_py/pygame_icon.icns Combined, they are 500kb. ~~If we can remove that from the 40...

buildconfig

I'd like to turn `_sdl2.video.Window` into a public API in 2.4.0 Firstly, where should it live? I see two contenders. - `pygame.display.Window` - `pygame.window.Window` (like pygame.surface.Surface, primarily advertised as pygame.Window)...

_sdl2
window

I think mixer module docs need some clarification. `A value from 0 to the value of get_num_channels()` is for [0-num_channels), while `the value argument is between 0.0 and 1.0`, `volume...

docs
mixer

**This isn't fully developed, mostly putting this up so it doesn't get forgotten** Currently, event types don't have great autocomplete or type hinting correctness, because they are very generic. They...

New API
event