quiqueck / BCLib

A library mod for BetterX team mods, developed for Fabric, MC 1.16.4+
https://modrinth.com/mod/bclib
Other
21 stars 21 forks source link
fabricmc minecraft-mod

BCLib

BCLib is a library mod for BetterX team mods, developed for Fabric, MC 1.19

Importing:

You can easily include BCLib into your own mod by adding the following to your build.gradle:

repositories {
    ...
    maven { url 'https://jitpack.io' } 
}
dependencies {
    ...
    modImplementation "com.github.quiqueck:BCLib:${project.bclib_version}"
}

You should also add a dependency to fabirc.mod.json. BCLib uses Semantic versioning, so adding the dependcy as follows should respect that and ensure that your mod is not loaded with an incompatible version of BCLib:

"depends": {
  ...
  "bclib": "2.0.x"
},
"breaks": {
  "bclib": "<2.0.6"
}

In this example 2.0.6 is the BCLIb Version you are building against.

Features:

Rendering

API:

Libs:

Helpers And Utils:

Complex Materials

Pre-Defined Blocks and Items:

Configs:

Interfaces:

Building: