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

Hi, I took a look at all examples, and made some fixes. ``aacircle.py`` : - Removed the pretty weird try block and replaced it by a beautiful while loop ``aliens.py``...

examples

Fixes #1497, fixes #405

Deprecation Warning
C API

Close https://github.com/pygame-community/pygame-ce/issues/661 (I don't think any of that renaming mentioned there is going to happen, so, adding the area kwarg is about all there's left to it)

New API
mask

**Description** We've had an essential number of blend modes available for a long time, which are: `MAX` `MIN` `ADD` `SUB` `MULT` While these flags can be combined together to achieve...

enhancement
Surface

pygame.draw doesn't apply transparency, but the docs imply it should reproducer ```python import pygame screen = pygame.display.set_mode((500, 500)) OPAQUE = (255, 0, 0, 255) TRANSLUCENT = (255, 0, 0, 128)...

**Environment:** Windows 10 pygame-ce 2.4.0 (SDL 2.28.5, Python 3.12.0) **Current behavior:** When blitting a Surface with a global alpha value to an SRCALPHA Surface the alpha value is applied twice....

bug

Hello, It would be great to add a way to round surface corners. I believe it wouldn't be difficult to implement it, since we do it manually in ``pygame.draw.rect``. What...

enhancement
New API
transform

Recent updates in #2382, #2565 and #2566 have improved the speed of Surface.fill calls when using the `ADD`, `SUB` `MULT`, `MIN` and `MAX` blend flags. However, thereโ€™s still a fundamental...

enhancement
Surface

Task for #2603

window

Could be implemented in either of the following ways: ```python pygame.draw.rects(surf: Surface, color: Color, rects: List[Rect]) ``` ```python pygame.draw.rects(surf: Surface, sequence: ((Rect, Color), ...)) ``` If we go down this...