Questions tagged [arcade]

Arcade is a Python library for creating 2D video games.

Reference:

Documentation:

110 questions
-1
votes
1 answer

Why is Pip not working after upgrading Python to 3.8?

I was working on a 2D game using python 3.6.8 and pip3. Everything was working fine. Then i downloaded and installed python 3.8. Now, pip won't work at all. These are the errors I am getting when running "pip3 install arcade": WARNING: pip is…
Bryce Tant
  • 11
  • 2
-1
votes
1 answer

Python Arcade library doesn't draw sprites (blank window)

I'm trying to draw a simple .png file (a car) using the arcade library. However, after following the tutorial, I can't get the image of the car to show on the screen. I'm using Pycharm Community 2019.2 on windows 10 x64 and python 3.6 (anaconda…
João Pedro
  • 167
  • 6
-2
votes
2 answers

How can I restart my Python Arcade game so that it works properly after game over?

I'm working on a simple platformer game in Arcade with a player and an enemy. If the player collides with the enemy, I would like the game to start over from scratch. However, with my current code, I call setup() and the game resets, but I am unable…
-3
votes
2 answers

Running code returns with "color must int or tuple"

I was running a tower defence game in the arcade module but after I press start, the game freezes up and returns with Traceback (most recent call last): File "D:\lib\site-packages\arcade\text.py", line 278, in draw_text label =…
-4
votes
2 answers

why there is no import of arcade module in vs code for python

after run it shows this "ModuleNotFoundError: No module named 'arcade'" no arcade found in VS Code for python.
1 2 3 4 5 6 7
8