← Return to game
Log in with itch.io to leave a comment.
I had to edit main.py to be able to play the game.
What to do:
Add this line on the top of the file:
from pathlib import Path
repleace all
pygame.image.load("path")
with
pygame.image.load(Path("path"))
and rename file "Hard.png" in Assets folder to "hard.png"
After all of this changes, the code should run.
I know am a bit late but Thanks for the advice and will get around to implementing it.
← Return to game
Comments
Log in with itch.io to leave a comment.
I had to edit main.py to be able to play the game.
What to do:
Add this line on the top of the file:
repleace all
with
and rename file "Hard.png" in Assets folder to "hard.png"
After all of this changes, the code should run.
I know am a bit late but Thanks for the advice and will get around to implementing it.