Minecraft mod to add emotes to the game like in Bedrock Edition... Just it's open emoteFormat and free unlike that :D
User manual
Mod code documentation
Set-up dev environment and compile
git clone https://github.com/KosmX/emotes.git
You should set it up as a Fabric mod
Emotecraft dependencies:
Note: some dependencies are from jcenter jcenter()
Fabric-api
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
modImplementation "io.github.prospector:modmenu:${project.modmenu_version}"
include "io.github.prospector:modmenu:${project.modmenu_version}"
modImplementation "me.shedaniel.cloth:config-2:${project.cloth_version}"
include "me.shedaniel.cloth:config-2:${project.cloth_version}"
modImplementation "com.kosmx.bendylib:bendy-lib:${project.bendylib_version}"
include "com.kosmx.bendylib:bendy-lib:${project.bendylib_version}"
modImplementation "pm.c7.perspective:PerspectiveModRedux:0.0.5"
Perpective Mod Redux is not in any maven repo, you need to publish it to your local repo
mavenLocal()
To do it, you need to git it
git clone https://github.com/BackportProjectMC/PerspectiveModRedux.git
edit the build.gradle with the following
@@ -77,6 +77,9 @@
artifact(jar) {
builtBy remapJar
}
+ artifact(remapJar){
+ builtBy remapJar
+ }
artifact(sourcesJar) {
builtBy remapSourcesJar
}
@@ -86,6 +89,6 @@
// select the repositories you want to publish to
repositories {
// uncomment to publish to the local maven
- // mavenLocal()
+ mavenLocal()
}
}
If you want to implement the mod, you won't need Perspective Mod Redux to build your mod