Is there a way in Python Arcade library to read text from the user (with textbox rectangle, or popup, etc.)? Without the need to read each key, and interpereting it (and translate to some other char if the system language isn't English).
If not, is…
I wrote Dino game with Arcade in Python. To move the dinosaur, I use mediapipe hand detection with a webcam. The problem is that I can not open both the webcam and the game window together.
To solve this problem I wanted to use the threading…
I'm trying to do this example. So, I copy and paste the entire code in my Pycharm:
"""
Example "Arcade" library code.
This example shows the drawing primitives and how they are used.
It does not assume the programmer knows how to define functions…
I'm building a game in Python Arcade which will have a NEAT AI run through the level. I am trying to find a way for the multiple instances of the player to run at the same time but without colliding. Is there a way to do this? Collision types just…
Here is that piece of code.
'def remove_DeadObjects(self):'
'for bullet in self.bullets:'
'if not bullet.alive:'
'self.bullets.remove(bullet)'
'for asteroid in…
I am developing a simple platformer game using the arcade game library of Python. I am still new to this, but I have tried to use as much object oriented programming as I could. I have successfully setup two "rooms" or levels of the game. However, I…
actually I'm trying to code my first 2d game with python, using arcade library. I want to know if there's a way to make the game fit any screen size without manual adjustment of the width and height:
import arcade
SCREEN_WIDTH = 800
SCREEN_HEIGHT =…
Whenever I try to run my code in Microsoft Visual Code Studio 2, it keeps popping up saying that there is no module named arcade.
However, when I run the code in pyCharm, it runs perfectly fine. Does anyone know why it does this?
Howdy fellow overflowers,
Ive had a hankering to build a simple platformer using python! The search led me to python arcade! While going through the tutorial here: https://opensource.com/article/18/4/easy-2d-game-creation-python-and-arcade
my pop up…
I am trying to draw a simple circle by python arcade.But there are some error like this..
arcade.draw_circle_filled(x, y, radius, arcade.color.YELLOW)
File "C:\Python38-32\lib\site-packages\arcade\draw_commands.py", line 240, in…
I want to create a simple watch with python arcade library that will be displayed on a TFT screen from raspberry pi.
I don't know how to get the arcade image data and send it to the /dev/fb1 (framebuffer).
In pygame it is possible with something…
Python 3.8.1
using python-arcade and linux manjaro os
This project is a multiplayer game built with python arcade
I get these errors while running :
class Client(arcade.Window):
def __init__(
self,
width: int,
height:…