Post: Space-Dodge Game
This blog post is here to show you one of the awesome games I have developed in Python. You can see the code for this game on my GitHub. You will see what is in it, how the controls work, etc. I will also show you how to run the game so you can play it too. But now let’s dive into it!
This game is called Space-Dodge. There are small white rectangles falling down the screen. You are a red rectangle in space and you can move left and right with arrow keys. You are supposed to dodge the white rectangles as they fall down toward you. The longer you survive, the harder it gets (more particles fall down).
Now to play it, go to the link in the second paragraph. That will take you to the repository on GitHub. There will be instructions in the README file to run it, but I will also tell you here. First, install Python and Git if you don’t have them. Then in your terminal type pip install pygame
to install Pygame.
Once you have Pygame installed, clone the repository by typing git clone https://github.com/im2fast4u/Space-Dodge.git
in your terminal. Then type cd Space-Dodge
to open the repository. Finally, type python main.py
to run the python file. Now you can play it!
I hope you are able to play my game now! If you like it, please star the repository. You can visit this blog post anytime if you forget something. Thank you for reading!