https://github.com/offsetmods538/fluid-lib
Makes it easier for mod developers to add custom fluids
https://github.com/offsetmods538/fluid-lib
fabric fabric-mod minecraft minecraft-mod
Last synced: about 1 month ago
JSON representation
Makes it easier for mod developers to add custom fluids
- Host: GitHub
- URL: https://github.com/offsetmods538/fluid-lib
- Owner: OffsetMods538
- License: mit
- Created: 2023-03-13T13:59:25.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T10:15:45.000Z (almost 3 years ago)
- Last Synced: 2024-12-29T02:33:51.270Z (over 1 year ago)
- Topics: fabric, fabric-mod, minecraft, minecraft-mod
- Language: Java
- Homepage:
- Size: 216 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fluid Lib
[](https://discord.offsetmonkey538.top/)
## Disclaimer: this library is in development, so you might encounter problems. Please report any problems you find on github.
## What is this?
It's a library making it easier for mod developers to add fluids.
I guess it's possible to add some things to existing fluids using datapacks and tags, but this is meant for mod developers.
## Including in your project
All you'll have to do is include the JitPack repository in your project like this:
```groovy
repositories {
maven {
name = "JitPack"
url = "https://jitpack.io"
}
}
```
Then you'll have to actually include the library:
```groovy
dependencies {
include modImplementation("top.offsetmonkey538:fluid-lib:[VERSION]")
}
```
Make sure to use the latest version of the library.