Skip to content
Nico A. edited this page Jul 8, 2025 · 7 revisions

What is Liby (v3)?

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

How to add Liby to your project

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

  1. 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.
  1. 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"
}

Clone this wiki locally