Questions tagged [arcade]

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

Reference:

Documentation:

110 questions
1
vote
2 answers

pip install arcade keeps giving "Could not find module 'geos_c.dll' (or one of it dependencies). geos.dll and geos_c.dll unfindable

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…
1
vote
2 answers

How can I fix this Python Arcade Geometry Shader error?

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…
Undercraft_CR
  • 55
  • 1
  • 9
1
vote
1 answer

Python arcade library function read_tmx not working

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…
Dagger
  • 23
  • 3
1
vote
1 answer

Issue with rendering screens & background in python arcade

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…
bambinoh
  • 63
  • 1
  • 6
1
vote
0 answers

How do I adjust mouse Coordinates Efficiently with Python Arcade?

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…
1
vote
1 answer

Copied this code from the official arcade site but i get this error: AttributeError: module 'arcade' has no attribute 'Scene'

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…
1
vote
1 answer

Using Python Arcade and Tkinter together hangs the application

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,…
1
vote
1 answer

How to Level Up

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…
1
vote
1 answer

How can I make an updating timer on an existing window made with Arcade in Python?

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…
robdawg
  • 11
  • 2
1
vote
1 answer

Asteroids Game, Object Oriented Orogramming, Python

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…
1
vote
2 answers

What is pymunkoptions?

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 "",…
1
vote
2 answers

why am i getting got an unexpected keyword argument 'calculate_hit_box'

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 =…
Mohd osama
  • 81
  • 4
1
vote
1 answer

Cannot install python arcade on mac

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…
1
vote
2 answers

VSCode FileNotFoundError

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…
Josh
  • 11
  • 2
1
vote
0 answers

Error when using CX_Freeze setup to convert Python Application to Windows executable "TypeError: argument of type 'NoneType' is not iterable"

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…
MStrad
  • 23
  • 3