Skip to content

Commit

Permalink
Edited README.md for version 0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
mindstorm38 committed Jan 10, 2020
1 parent 409aca6 commit 4dfcf33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,31 @@ in order to understand procedural generation and I thought creating
a MC clone was the best easy way to visualize this type of
generation.

## Play (version 0.1.0)
## Play (version 0.1.1)

- Escape to switch pause mode
- Use mouse to move the camera
- Press `L` to generate terrain around the camera
- Press `I` to instantiate a falling block entity
- Press `I` to instantiate a **PIG**
- Use `ZQSD` (or WASD) to move
- Space and Shift to move verticaly
- Use `F11` to toggle fullscreen
- Press `F11` to toggle fullscreen
- Use arrows keys to rotate the first PIG's head
- Press `K` to randomly move the first PIG
- Press `P` to send debug message for the first PIG (dev)

> If you want to customize controls, you can edit the `options.json` next to downloaded jar file.
> If you want to customize controls, you can edit the `options.json` (after the first start) next to downloaded jar file.
> You can use the [GLFW page about keys ids](https://www.glfw.org/docs/latest/group__keys.html) to know numbers to put in the configuration file to change control keys.
> This config file will be supported in future version.
> Do not forget to save your custom settings before launching a new version of the game, because I add lot of debug keys to the game each release.
## This content is coming

- [x] Motion entities
- [x] Pigs
- [x] Model
- [x] Animations ***(New)***
- [x] Animations ***(New in 0.1.1)***
- [ ] AI
- [ ] Asynchronous (multi-threaded) chunk generation
- [ ] Asynchronous world chunk saving on file system
Expand Down
7 changes: 2 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {

allprojects {

version = "0.1.0"
version = "0.1.1"

}

Expand All @@ -24,7 +24,7 @@ subprojects {
apply(plugin = "com.github.johnrengelman.shadow")

ext {
set("msengineVersion", "1.0.7-SNAPSHOT")
set("msengineVersion", "1.0.7")
set("sutilVersion", "1.1.0")
}

Expand All @@ -43,9 +43,6 @@ subprojects {
mavenPom()
ignoreGradleMetadataRedirection()
}
mavenContent {
snapshotsOnly()
}
}

}
Expand Down

0 comments on commit 4dfcf33

Please sign in to comment.