-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from letsbuilda/tutorial
Tutorial
- Loading branch information
Showing
1 changed file
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,34 @@ | ||
# pyweek-2023-03 | ||
# Slayer in the Shadows | ||
|
||
Our entry to **[PyWeek 35](https://pyweek.org)**. | ||
|
||
Note: Unfortunately, we were unable to complete the game. We wanted to add in levels, enemy sprites, and ranged weapons, | ||
but we all got busy with life. However, we still want to show off what we had, and we will still probably work on it and | ||
finish later. | ||
|
||
## Installation | ||
|
||
To install the game, you need to clone this repo and install the dependencies: | ||
|
||
```commandline | ||
git clone https://github.com/letsbuilda/pyweek-2023-03.git | ||
cd pyweek-2023-03 | ||
python -m pip install -r requirements.txt | ||
``` | ||
|
||
> Note: Replace `python` with the proper executable name. On Windows, this is usually `py` and on other systems, it's | ||
> usually `python3`. | ||
Once the dependencies are installed, run the game: | ||
|
||
```commandline | ||
python -m run_game | ||
``` | ||
|
||
## Controls | ||
|
||
Jump: W or Space | ||
Right: D | ||
Left: A | ||
Attack: Left click | ||
|
||
Our entry to PyWeek March 2023 |