Python 3.13 support by einarf · Pull Request #2414 · pythonarcade/arcade · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/selfhosted_runner.yml
2 changes: 1 addition & 1 deletion arcade/examples/pymunk_demo_top_down.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def wall_hit_handler(sprite_a, sprite_b, arbiter, space, data):
def on_mouse_press(self, x, y, button, modifiers):
""" Called whenever the mouse button is clicked. """

bullet = arcade.SpriteSolidColor(5, 5, arcade.color.RED)
bullet = arcade.SpriteSolidColor(width=5, height=5, color=arcade.color.RED)
self.bullet_list.append(bullet)

# Position the bullet at the player's current location
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml