Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
cb9de35175
26
README.md
26
README.md
@ -8,9 +8,33 @@ The primary outlet of which is a Forge mod for the popular game Minecraft (Java
|
||||
Firstly you must recursively git-clone this repository and its submodules (Engine & FeatureManager). To build the
|
||||
mod jar just use the gradle build task. The jar will output to the `build/libs` directory.
|
||||
|
||||
Commands:
|
||||
#### Commands
|
||||
```shell script
|
||||
git clone --recursive https://github.com/TerraForged/TerraForged.git
|
||||
|
||||
./gradlew build
|
||||
```
|
||||
|
||||
### Developing With TerraForged's API
|
||||
|
||||
#### Dependency
|
||||
```groovy
|
||||
repositories {
|
||||
maven {
|
||||
url "https://io.terraforged.com/repository/maven/"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fg.deobf("com.terraforged:TerraForged:1.15.2-0.1.0:api")
|
||||
}
|
||||
```
|
||||
|
||||
#### Usage
|
||||
|
||||
TerraForged fires a number of setup events each time its chunk generator is created. These events expose certain
|
||||
components of the generator allowing for world-gen content to be configured, modified, or added to dynamically.
|
||||
|
||||
See the `com.terraforged.api.TerraEvent` class for the available events.
|
||||
|
||||
All events are fired on the `FORGE` event bus.
|
||||
|
Loading…
Reference in New Issue
Block a user