Pygame Sprite Graphics?
Does repl.it support sprite graphics? If so, how do you implement them?
[deleted]
repl.it supports all the features of pygame (except maybe audio). I believe they implement that by piping an X11 screen to your repl using Websockets.
NarwhalFanatic
I believe you maybe able to import an image as a file and then assign a sprite that file. Haven't tested it though.
You'll have to import an image file if you want anything complicated, this website has a good amount of documentation on sprites.
@Kai_Justice So do I have to download an image file locally on my PC?
@olatobi Yes, you'll have to download the image on your pc and upload it to replit.
@Kai_Justice i've downloaded all the images that I need to use, do you know exactly how to implement them as sprites in my code?
@olatobi I'm not exactly indepth at using pygame but here's what I've come up with on loading sprites.
@Kai_Justice thanks so much man, I really appreciate your help :)