Long post for one error I keep getting:
PC, Windows 10, I have used PyCharm, VS Code, Powershell for pip installations, virtual environments as well as normal.
I am trying to get the arcade library installed, so I can get to building a platform type…
I have a big Problem. In the Python Arcade Library on the newest version (on Version 2.5.7 the Programm running successfull) is this error on the start from every programm:
Traceback (most recent call last):
File…
Following this code from this tutorial I'm getting this error
DeprecationWarning: The read_tmx function has been replaced by the new TileMap class.
The code I'm using is
game_map = arcade.tilemap.read_tmx(str(map_path))
I'm not sure if this code…
I am having difficulty getting a simple python Arcade app to work on my Win10 machine. I think the issue is with the "start_render" function not taking effect. I have the following issues:
the screen does not "redraw", i.e., all existing sprites…
So I'm making a game where I have a GUI. So I have used the UIManager Class provided by the Arcade library.
I made a Subclass so it would better fit my needs for my game:
Adjust Mouse Coordinates for the current Viewport (Game Scrolls)
Adjust Mouse…
When I run my code I get
Traceback (most recent call last):
File "c:\Users\Luke Coopman\Python\game2.py", line 226, in
main()
File "c:\Users\Luke Coopman\Python\game2.py", line 221, in main
window.setup()
File "c:\Users\Luke…
I am trying to build an app that generates dynamic visual models (using Python 3 with PyCharm on Windows). I am using Arcade for the main viewing / user interaction window, and Tkinter for preliminary data input, model parameters, numeric output,…
I'm currently working on building the game Pong. One aspect of the game is displaying the current level. What I want to happen is have 3 levels. When the score is equal to 5, I want to display "Level 2". When the score is equal to 10, I want to…
I have been creating a project in arcade that has a race car on screen that dodges obstacles and tries reaching the finish line with as fast as time as possible. I have seen other questions that have been answered in creating a new window with a…
I am making an asteroids game. I have got the ship moving and
asteroids floating as they should.
I want an explosion to occur when an asteroid collides with the ship, but I am lost on how to make it work. Thank…
I'm pretty frustrated and I'm not even sure where to start. I'm trying to install python arcade and it's going poorly. I'm trying to run one of the tutorial scripts and I get back the following error.
Traceback (most recent call last):
File "",…
Im trying to make a card game and for some reason i keep on getting got an unexpected keyword argument 'calculate_hit_box' error everytime i run my code
import arcade
# Screen title and size
SCREEN_WIDTH = 1024
SCREEN_HEIGHT = 768
SCREEN_TITLE =…
I was trying to do something with python, so I tried to install arcade. Just pip install arcade didn't work and I've tried other stuff too like following this link. None of it worked, It always gave me the same error. This is the whole…
I am trying to create a 2D arcade style game for a project in school using Python Arcade in VSCode, but I have issues correctly locating a map I created on a map editor.
Both the game code and map file are situated in the same main folder, with the…
I'm trying to figure out how to create a windows executable or a windows installer for my python applications so that I can distribute them with family. For this example I created a checkers game using Python Arcade. I am using Python 3.8.2, and the…