arcade icon indicating copy to clipboard operation
arcade copied to clipboard

Easy to use Python library for creating 2D arcade games.

Results 321 arcade issues
Sort by recently updated
recently updated
newest added

## Bug Report When profiling my code, I found out that `arcade.gl.query.__exit__` was taking up the vast majority of my performance time, more than four times than anything else. It...

Now that we dropped python 3.9 we can respect the deprecation of the typing module. We should be using `collections.abc instead. Most members in the typing module are aliases to...

typing

When adding 2 UI Elements (`arcade.gui.UIInputText`) the first one stays active even though the user clicked on the second one. Code for the video below ```py class LoginMenu(BaseGUI): def __init__(self,...

gui

## Bug Report ### Actual behavior: ReST lists appear to omit margin spacing between their ends and subsequent elements. To get 3.0.0 out the door quickly, I'm working around this...

documentation

It seems like the focus is not showing if there is no controller, which is good in my opinion, but the space key press event is still catched even if...

gui

Added double jump as well as time intervals for them. Also made it so user cannot stall falling when double jumping eliminating a "glide effect"

### Just need this in code ``` text = arcade.Text( str(score), self.position.x, self.position.y, font_size=22, font_name=my_font_path, color=arcade.color.WHITE, anchor_x="center", anchor_y="center", outline = true, outline_color = arcade.color.DARK_GRAY, outline_thickness = 1, ) ``` _High-performance...

Pretty much what it says on the tin. If you have a camera active, draw some points, and then call `draw_lines()` with an empty list, you'll get lines between the...