Matiiss
Matiiss
> `blit(source, dest, area=None, special_flags=0, relative_to="topleft")` I agree with using this, but would propose `anchor` as the parameter name as I have seen it being used in `tkinter` and it...
Alright, I would like to tackle this issue then. I suppose I just follow how other functions have been written there (declaration at top and this goes under generic vector...
I fail to see the purpose of this, you can already do something like ```py class MySprite(pygame.sprite.Sprite): def update(self, events): for event in events: # handle event some_group = pygame.sprite.Group()...
This is not exactly a bug, it's that there are no release wheels yet for 3.11, use `pip install pygame --pre` (`--pre` stands for _pre release_), it will install `pygame`...
@arknaut Well, that's the latest version of `pygame` that has wheels for Python 3.11 so it would be the most stable for that version of Python. Also, yeah, it should...
Uh, no, it's more like `2.1.3.dev8` (it's technically a pre-release btw) happens to have wheels for Python 3.11, it's not specifically temporarily released for 3.11 because really 2.1.3 is kind...
@blankRiot96 Those wouldn't be full blown applications, they probably don't even need menua or any of that. In case of pong for example, I feel like the code for that...
If you need to raise exceptions from your helper function, I would suggest making it return `-1` on failure and `0` on success (as Python C API functions do for...
> I've implemented the test cases for rounded polygons within separate functions inside the `DrawPolygonMixin` class. I'm not sure if this aligns with your preferences or if you would prefer...
Well, I guess the CI really doesn't like `multiprocessing`, going to move the test to the interactive tests section.