-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Nico A. edited this page Jul 8, 2025
·
7 revisions
Liby mainly is a asset/data injection library, you can add models, blockstates and tags during startup. It also adds a custom model format that allows free rotation on all three axis.
For a full explenation see Introduction V3
Step 1: Add the ModrinthMaven Repository
To download Liby from ModrinthMaven, you first need to add the repository to your build.gradle file:
repositories {
maven {
name = "Modrinth Maven"
url = "https://api.modrinth.com/maven"
}
}Step 2: Add the Liby Dependency
- Find the Version:
- Go to the Modrinth project page for Liby.
- Navigate to the Version section and find the version compatible with your Minecraft setup.
- Copy the version number.
- Add the Dependency:
modImplementation "maven.modrinth:liby:<version>"- After this the snippet, add it to the dependencies block in your build.gradle. Here’s an example:
dependencies {
// Add the Liby dependency using the Maven snippet
modImplementation "maven.modrinth:liby:1.21.1-build-2.1.1"
// Liby dependency
implementation "org.reflections:reflections:0.10.2"
}