Skip to content

Commit

Permalink
Add changelog, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Selgesel committed Aug 22, 2021
1 parent 3307263 commit 8766a6f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

## 0.0.1
- Added the initial project version with the following features:
- A simple scene with platforms and slopes to test the movement system
- Basic horizontal movement
- Ability to jump multiple times
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# Godot Third Person Player Controller
Yet another third person player controller implementation for Godot.

You can use WASD keys to move around and Space to jump multiple times, and you can also adjust the max number of jumps via an export variable on the Player node.
I keep adding stuff to this repository, and I make sure that the master branch is stable, and contains the latest features.

If you're interested in the timeline of features see [CHANGELOG.md](./CHANGELOG.md)

![Screenshot](./screenshot.jpg)

## Controls
| Keys | Action Name | Description |
|------|-------------|-------------|
| `W` | `move_forward` | Move character forward |
| `S` | `move_backwards` | Move character backwards |
| `A` | `move_left` | Move character to the left |
| `D` | `move_right` | Move character to the right |
| `Space` | `jump` | Have the character jump |

## License
MIT

0 comments on commit 8766a6f

Please sign in to comment.