Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexiil/libmultipart
https://github.com/alexiil/libmultipart
fabricmc library minecraft minecraft-fabric minecraft-mod mod
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alexiil/libmultipart
- Owner: AlexIIL
- License: mpl-2.0
- Created: 2019-06-11T20:34:57.000Z (over 5 years ago)
- Default Branch: 0.11.x-1.20.x
- Last Pushed: 2024-08-02T05:10:35.000Z (3 months ago)
- Last Synced: 2024-10-14T06:22:19.820Z (26 days ago)
- Topics: fabricmc, library, minecraft, minecraft-fabric, minecraft-mod, mod
- Language: Java
- Size: 729 KB
- Stars: 29
- Watchers: 3
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LibMultiPart
This is a library mod for the [Fabric](https://fabricmc.net/) API, based around [Minecraft](https://minecraft.net), that adds support for multiple "parts" (such as pipes, facades, wires, etc) in a single block.
## Maven
You can depend on this by adding this to your build.gradle:
```
repositories {
maven {
name = "AlexIIL"
url = "https://maven.alexiil.uk/"
}
}dependencies {
modCompile "alexiil.mc.lib:libmultipart-all:0.8.0"
}
```There are two modules availible: "libmultipart-all" and "libmultipart-base". The base module is *just* libmultipart, while libmultipart-all includes libmultipart-base and it's dependencies: libblockattributes-core and libnetworkstack-base.
## Getting Started
You can either look at the [wiki](https://github.com/AlexIIL/LibMultiPart/wiki) for a brief overview, or look at [SimplePipes](https://github.com/AlexIIL/SimplePipes) source code for the tank or facades for examples on how to register and use multiparts. (To get help you can either open an issue here, or ping AlexIIL on the fabric or CottonMC discord servers).