Matiiss
Matiiss
As I have discovered with the help of @oddbookworm then **in 2.1.2 every call to `set_mode` clears/fills the display** while **in 2.1.3.dev5 starting from the 3rd call it doesn't clear/fill...
Not a major issue but the _pygame 4000 book update_ banner in the documentation is quite annoying and it has been there for quite a while. While you are at...
Fixes https://github.com/pygame/pygame/issues/3543
 https://www.pygame.org/docs/ref/pixelarray.html#pygame.PixelArray.close
Adding `__round__` method to the mentioned objects so that it is possible to do this `round(vector_instance, ndigits)` and it would return a new vector with all of its values rounded...
Environment: - Windows 10 - Python 3.10.6 - `pygame` 2.1.3.dev9 (could reproduce on 2.1.2 and 2.1.0 too) MRE: ```py import pygame pygame.display.set_mode((1, 1)) pygame.Surface.__new__(pygame.Surface).convert(24) ``` It does not really matter...
Description: A surface that can be scrolled, as well as a Widget class that let's adding different types of widgets to the scrollable surface and scroll with it, here's some...
Description: Class that draws text in a typewriter fashion (letter by letter with some configurable delay in between, also a blinking cursor), newlines included, position sets the center position. Should...
Camera following a point (player)
Basically the idea is to have an arrow or some other projectile follow a trajectory to some position so basically you click mouse in some position and it calculates and...