This repo contains resourcepack module for hitori framework.
This module is basically an API for another modules. It itself contains almost no mechanics.
- Custom blocks
- via barriers: allows several blocks to be placed at once (for example for benches)
- via interaction entities: allows to customize hitbox size
- can be interactable (emit light, work as a seat and change appearance)
- Custom content generation pipeline (custom items, item models, glyphs, sounds, translations, custom blocks and other assets)
- Resource pack local hosting
- Poses (/sit, /lay, /crawl)
You can get a jar from Actions tab. Module is built almost after every commit.
Also, you can get module from Releases (if there's any).
After downloading the jar, just put it into hitori folder. Then restart the server.
This module is published via JitPack
maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories> <dependency>
<groupId>com.github.modoruru</groupId>
<artifactId>hitori-resourcepack</artifactId>
<version>version</version>
</dependency>gradle
repositories {
// ...
maven { url 'https://jitpack.io' }
}dependencies {
// ...
implementation 'com.github.modoruru:hitori-resourcepack:version'
}GSit - for poses logic reference (and some code parts)