Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mystery2099/voxlib
This Minecraft library mod adds some tools which help modders to more easily manipulate, create, and rotate voxel shapes in their code!
https://github.com/mystery2099/voxlib
api fabric-mod fabric-mods fabricmc-mod fabricmc-mods library minecraft-fabric-mod minecraft-fabric-mods minecraft-mod
Last synced: 17 days ago
JSON representation
This Minecraft library mod adds some tools which help modders to more easily manipulate, create, and rotate voxel shapes in their code!
- Host: GitHub
- URL: https://github.com/mystery2099/voxlib
- Owner: Mystery2099
- License: other
- Created: 2023-10-16T19:31:45.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-15T16:47:41.000Z (8 months ago)
- Last Synced: 2024-10-16T12:18:51.970Z (about 1 month ago)
- Topics: api, fabric-mod, fabric-mods, fabricmc-mod, fabricmc-mods, library, minecraft-fabric-mod, minecraft-fabric-mods, minecraft-mod
- Language: Kotlin
- Homepage: https://modrinth.com/mod/voxlib/
- Size: 365 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```gradle
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](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-gradle-registry#using-a-published-package)