arcade
arcade copied to clipboard
Easy to use Python library for creating 2D arcade games.
The Platformer Tutorial has not been updated since the 2.6 release. Need to do a holistic overview of the whole thing and update every chapter with new best practices and...
Hello! I was happy to see pygame-ce had been added to this comparison page, it spurred me to do a few small updates. Hopefully these are agreeable. - added pygame-ce...
From @einarf's 3.0 wishlist: > Frame time support in arcade is still very lacking To limit scope of 3.0, let's focus on breaking API changes if any. But it requires...
The PhysicsEnginePlatformer class has the beginnings of a jumping system. In the platformer tutorial we have previously largely handled the jumping logic within the game, with only the use of...
A dumping ground for small problems I discover on the website and do not want to create a separate issue. Formatted as a checklist so that Github shows the "create...
Fix the installation docs section - [ ] Update template - https://github.com/pythonarcade/template is out-of-date - uses requirements.txt instead of pyproject.toml - [ ] Deduplicate PyCharm instructions - *It may be...
## Documentation request: Clarify Docstring Style Guidelines ### What documentation needs to change? `contributing.md` and/or `doc/contributing_guide` should specify the preferred docstring format. ### Where is it located? `contributing.md` and/or `doc/contributing_guide`...
Isometric has repeatedly come up on the Discord so im putting this here as a reminder and checklist. This requires: - [ ] Tilemap Loading - [ ] Correct Sprite...
## Enhancement request: Make the timer in arcade better. ### What should be added/changed? P.S: dt stands for delta_time - clamped dt - paused dt - slow-mo - give both...
## Documentation request: Per my understanding of discussion on Discord, the [set_viewport](https://api.arcade.academy/en/latest/api/window.html#arcade-set-viewport) function will be removed in favor of using Cameras in 3.0. If this is the case, [the edge...