Skip to content

Commit bb46eca

Browse files
authored
README LE
1 parent 59d5ae0 commit bb46eca

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

top-python-game-engines/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Top Python Game Engines
22

3-
This repository contains source code for sample games you'll see in Real Python's Top Python Game Engines article.
3+
This repository contains source code for sample games that you'll see in Real Python's Top Python Game Engines tutorial.
44

5-
After cloning this repository, you can navigate into each folder to find the source code for the sample games shown in the article. Instructions on how to run each game is shown below.
5+
After cloning this repository, you can navigate into each folder to find the source code for the sample games shown in the tutorial. Instructions on how to run each game is shown below.
66

7-
## Setup the Virtual Environment
7+
## Set up the Virtual Environment
88

9-
It is recommended to use a virtual environment to run these samples. To do so, follow these instructions.
9+
It's recommended to use a virtual environment to run these samples. To do so, follow these instructions.
1010

1111
First, create the virtual environment:
1212

@@ -60,7 +60,7 @@ To run the Pygame Zero sample code, first activate the virtual environment:
6060
$ source ./venv/bin/activate
6161
```
6262

63-
Then navigate to the Pygame folder:
63+
Then navigate to the Pygame Zero folder:
6464

6565
```bash
6666
(venv) $ cd pygame_zero
@@ -85,7 +85,7 @@ Alternately, you can use `pgzrun` to run both games:
8585
```
8686

8787
### Note
88-
Checkers like [flake8 are unaware](https://pygame-zero.readthedocs.io/en/latest/installation.html#for-flake8-pyflakes) of Pygame Zero's extra builtins.
88+
Checkers like [flake8 are unaware](https://pygame-zero.readthedocs.io/en/latest/installation.html#for-flake8-pyflakes) of Pygame Zero's extra built-ins.
8989
That's why xou'll find `# noqa: F821` inline comments in `pygame_zero_basic.py` and `pygame_zero_game.py`.
9090
With the `# noqa` inline comments [flake8](https://flake8.pycqa.org/en/3.1.1/user/ignoring-errors.html#in-line-ignoring-errors) ignores the errors that these lines would cause.
9191

@@ -115,15 +115,15 @@ To run the full sample game:
115115
(venv) $ python arcade_game.py
116116
```
117117

118-
## AdventureLib
118+
## adventurelib
119119

120-
To run the AdventureLib sample code, first activate the virtual environment:
120+
To run the adventurelib sample code, first activate the virtual environment:
121121

122122
```bash
123123
$ source ./venv/bin/activate
124124
```
125125

126-
Then navigate to the AdventureLib folder:
126+
Then navigate to the adventurelib folder:
127127

128128
```bash
129129
(venv) $ cd adventurelib
@@ -144,9 +144,9 @@ To run the full sample game:
144144

145145
Unlike the other samples, Ren'Py games are developed and run from the Ren'Py Software Development Kit.
146146

147-
Visit the [Ren'Py web page](https://www.renpy.org/) to download the proper SDK for your environment (Windows, Mac, and Linux versions are available).
147+
Visit the [Ren'Py web page](https://www.renpy.org/) to download the proper SDK for your environment (Windows, macOS, and Linux versions are available).
148148

149-
Then, run the Ren'Py Launcher using the proper command for your environment. Check out the [Ren'Py Quickstart Guide](https://www.renpy.org/doc/html/quickstart.html#the-ren-py-launcher) for the most up to date instructions.
149+
Then, run the Ren'Py Launcher using the proper command for your environment. Check out the [Ren'Py Quickstart Guide](https://www.renpy.org/doc/html/quickstart.html#the-ren-py-launcher) for the most up-to-date instructions.
150150

151151
To access the basic and full sample games in the Ren'Py launcher, click _Preferences_, then _Projects Directory_. Change the Projects Directory to the `renpy` folder in the repository folder you downloaded. Click _Return_ to return to the main Ren'Py Launcher page.
152152

0 commit comments

Comments
 (0)