Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 872 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 872 Bytes

VoxLib

This mod adds some tools which help modders to more easily manipulate, create, and rotate voxel shapes in their code!

Developers

Declaring the dependency

repositories {
    maven {
        name = "GitHubPackages"
        url = "https://maven.pkg.github.com/Mystery2099/VoxLib"
        credentials {
            username = USERNAME
            password = TOKEN
        }
    }
}

dependencies {
    modImplementation("com.github.mystery2099:voxlib:VERSION")
}

Replace USERNAME with you GitHub username.

Replace TOKEN with a GitHub token.

Replace VERSION with the version of the mod you would like to use.

Example: 1.0.0+1.19.4

For more information, see Working with a GitHub Packages Registry