GlassPane / Mesh

Modding Library for Fabric
https://www.curseforge.com/minecraft/mc-mods/mesh
GNU Lesser General Public License v3.0
8 stars 2 forks source link
fabric fabric-mod fabric-mod-loader fabricmc fabricmc-mod hacktoberfest java minecraft minecraft-mod

Mesh

Minecraft Modding Library

Build Status Latest Release OnyxStudios Maven JitPack



Features

Installation

To install Mesh, you need to first add the OnyxStudios maven repository to your buildscript:

repositories {
    maven {
        name = "OnyxStudios"
        url = "https://maven.onyxstudios.dev"
    }
}

After that, you simply add the api and main artifact as runtime dependencies (define mesh_version in your gradle.properties file): If you want to use the automatic registration feature, you also need the annotation processor jar.

dependencies {

    modRuntime "dev.upcraft:Mesh:${project.mesh_version}"
    modApi "dev.upcraft:Mesh-API:${project.mesh_version}"
    annotationProcessor "dev.upcraft:Mesh-Annotations:${project.mesh_version}" // optional; currently only needed for the automatic registration feature

}

Notes