Andrew Bradley
Andrew Bradley
Good idea, linking to some Discord chat about docstring linting: https://discord.com/channels/458662222697070613/705076586986078350/1138947337998315560 Talking about docs coverage: how to verify that everything is appearing on the website. https://discord.com/channels/458662222697070613/705076586986078350/1138951296775364669 Talking about validate that...
Another item in the list: When documenting a `@property`, only the getter's docstring will appear in sphinx, not setter. If setter allows different types, for example when setting Color from...
The API changes for 3.0, precursor to future enhancements to time handling: - accept a `delta_time` for `PhysicsEnginePlatformer.update` and `PhysicsEngineSimple.update` - add `PymunkPhysicsEngine.update` alias to `PymunkPhysicsEngine.step`, for consistency - remove...
Note to self: capture summary of conversation started here: https://discord.com/channels/458662222697070613/458662458198982676/1145119205771976724
For "sidebar should auto-scroll to reveal current page" these snippets might work, though I didn't realize we have jQuery when I wrote them. When link is clicked, save the position...
@pushfoo is the best person to ask these days, but I think the issue was that the sidebar should be one-to-one link to page, but the first 3 sidebar links...
Also, it's visually inconsistent. In this screenshot, I clicked on "Drawing with Sprites and Spritelists" but the sidebar highlights "What's a sprite?" 
What you're saying makes sense. It looks like we should even replace `Union[HitBox, RotatableHitBox]` with `HitBox` I had initially proposed a design that did not use subclassing. https://discord.com/channels/458662222697070613/1085299745116917851/1086064696970465370 > I...
Should there be a class like this for every form of color, with conversion methods between them all? Or should this be the only color class, and all conversions between...
I tweaked the formatting of the above after learning that mypy is touchy about the formatting of these comments. pyright espouses `# type: ignore -- actual comment` but is happy...