gresm
gresm
I can confirm that code above (by @MyreMylar ) makes window to flicker, but it seems like it is caused by the fact that every time the window is resized,...
The comments in DreamBerd should be calculated on runtime and not included in source code - comments are useful for readers, but no one wants to write them! The ??...
@B-Salinas It somewhat is.
This would be useful with "dict factories": Let's have a class ``A``: ```py class A(TypedDict): property1: str property2: str ``` Some default vales for it: ```py default_A: A = {"property1":...
So it's not so uncommon. That's good to know.
1. Better metrics calculation for fonts - make them exactly how the text is rendered (some discussion happened here: #2587 ). 2. Basic 3d API - shaders, etc. (requires another...
> How would this work elegantly with custom event types made by users? Sub-classing ``Event`` class could do the trick. The id could be automatically generated at class creation (this...
> Is this a pygame-ce 3 level thing? I think that I've implemented this without breaking compatibility with any code besides that which uses bad ways of checking type of...
Just two comments regarding this pull request: 1. The cython files: scrolling through the diff, it seems that the changes are caused by regeneration of these files with a newer...
In my opinion, ``font.path`` should return string, from which you are able to reconstruct given font. For fonts from non-file location (like from this ``io.BytesIO``) could return "raw" paths. Such...