arcade
arcade copied to clipboard
Easy to use Python library for creating 2D arcade games.
### What should be added/changed? - [ ] Fix the divide by zero error when a layer's `depth` is 0 in `ParallaxGroup` - [ ] Add support for an initial...
## Enhancement request: ### What should be added/changed? The function create_text_sprite (and, if https://github.com/pythonarcade/arcade/issues/1410 is resolved, create_text_texture) requires a TextureAtlas since the text texture is created by rendering into it....
## Enhancement request: ### What should be added/changed? Widgets should be able to know, when they are added or removed to the ui. ### What would it help with? This...
Same reasons we test against python 3.8, 3.9, 3.10, and 3.11 Related: #1786 If we test with opencv installed, then we don't know if things break for people without opencv...
## Enhancement request: ### What should be added/changed? Add an "rgb" method to arcade.types.Color which return a 3-tuple (type "RGB") based on the color, i.e., it leaves out the alpha....
The following examples flicker (at least on windows for me): ``` arcade/examples/nested_loops_top_right_triangle.py arcade/examples/nested_loops_top_left_triangle.py arcade/examples/nested_loops_box.py arcade/examples/nested_loops_bottom_right_triangle.py arcade/examples/nested_loops_bottom_left_triangle.py arcade/examples/happy_face.py arcade/examples/drawing_with_loops.py arcade/examples/drawing_with_functions.py arcade/examples/drawing_primitives.py ``` By flickering I mean that the window swaps between...
The camera provided in Arcade currently has many issues that need to be fixed. • Only provides a 2D orthographic camera • Has janky and incorrect zoom functionality • Has...
Per @Cleptomania, it would be nice to have examples of custom hitbox usage.