Skip to content

How To Install

Like Architectury we support very little when it comes to IDE's, Intellij and Visual Studio Code, you will Need Java 19+. Open The version you want to work on in the respective branch and then open the folder matching the name of the version's branch as a project

Minecraft

When opening the project you Must open the 1.19.2 or 1.20.4 or any other wanted version's folder instead of opening the root folder

Note

Using Eclipse is possible but not recommended

Usage in your own mod

First add the required maven repository to your build.gradle file in the root

1
2
3
4
5
6
7
allprojects {
    repositories {
        maven {
            url "https://maven.thevrglab.com/"
        }
    }
}
and then modify the build.gradle for the proper project/Projects

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:common-1.0.0-mc<WANTED MINECRAFT VERSION>'
}

Warning

Forge is only supported until Minecraft 1.19.2

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:forge-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Warning

NeoForge is only supported from Minecraft 1.20.4 and onwards

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:neoforge-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}

Info

Fabric-Like is a project containing shared code between Fabric and Quilt

1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:fabric-like-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:fabric-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}
1
2
3
dependencies {
    modImplementation 'org.Vrglab:vrglabslib:quilt-<WANTED LIB VERSION>-mc<WANTED MINECRAFT VERSION>'
}