Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kosmx/bendy-lib
FabricMC library
https://github.com/kosmx/bendy-lib
bend-cuboids bendy-lib fabricmc-library minecraft minecraft-mod
Last synced: 18 days ago
JSON representation
FabricMC library
- Host: GitHub
- URL: https://github.com/kosmx/bendy-lib
- Owner: KosmX
- License: mit
- Created: 2020-09-07T20:02:57.000Z (about 4 years ago)
- Default Branch: dev
- Last Pushed: 2024-08-11T10:46:00.000Z (3 months ago)
- Last Synced: 2024-10-15T06:26:36.827Z (about 1 month ago)
- Topics: bend-cuboids, bendy-lib, fabricmc-library, minecraft, minecraft-mod
- Language: Java
- Homepage:
- Size: 2.16 MB
- Stars: 24
- Watchers: 2
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bendy-lib
FabricMC librarysetup with gradle:
```groovy
dependencies {
(...)
repositories {
mavenCentral()
(...)
}
(...)
modImplementation "io.github.kosmx:bendy-lib:${project.bendylib_version}"
include "io.github.kosmx:bendy-lib:${project.bendylib_version}"
//you can find the latest version in GitHub packages
}
```designed to be able to swap and bend cuboids.
The api provides a way to swap a cuboid with priorities, to be multi-mod compatible
(bend like in Mo'bends)to swap, you have to create a class from MutableModelPart, and implement the methods.
You don't have to use existing bendableCuboid objects, you can create your own, BUT it's highly recommend (it's a lot's of work to code a bendable stuff)
The test mod (an older and modified version of [Emotecraft](https://github.com/kosmx/emotes))
Sorry for this not finished documentation...
You can find me on the Fabric discord server and on the Emotecraft discord serverand an example image:D
![example](https://raw.githubusercontent.com/KosmX/bendy-lib/dev/example.png)
The release branch contains the source of the latest release.