Skip to content

Commit

Permalink
Merge pull request #9 from jkomar/master
Browse files Browse the repository at this point in the history
Fix typo's
  • Loading branch information
s-ol committed Jul 10, 2017
2 parents cce1e0e + 134f2d9 commit 2a1d9d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/world1_the-prototype/01_the-concept.adoc
Expand Up @@ -29,7 +29,7 @@ is currently facing. He can also turn the spaceship with two other keys.
Lastly the player can press a button to fire a shot.

When the spaceships leaves the screen on one side, it will enter from the opposite side,
keeping it's velocity.
keeping its velocity.

We can see that the spaceship needs to have a `position`, `velocity` and `rotation`.
In <<world1-5, World 1-5>> we will see that the actual way of saving the information
Expand All @@ -38,7 +38,7 @@ we use differs, but we could as well do with this "definition".
==== The Asteroids
Asteroids move in a straight line, also wrapping around the Screen in the same way
the spaceship does.
They larger an asteroid is, the slower it should move.
The larger an asteroid is, the slower it should move.
Therefore all we need to know about every asteroid is his `position`, `size` and his `rotation`.

Whenever an asteroid is hit, we split it into two smaller ones, unless it is already
Expand Down

0 comments on commit 2a1d9d6

Please sign in to comment.