功能丰富且易于使用的项目和配方查看器
EMI is a featureful and accessible item and recipe viewer for Minecraft.
To add EMI to your project as a dependency you need to add the following to your build.gradle:
repositories {
maven {
name = "Sleeping Town"
url = "https://repo.sleeping.town/"
}
}
How EMI gets added to your dependencies varies based on modloader and setup.
The Gradle property emi_version should be something like 1.0.0+1.19.4 with EMI's version and Minecraft's version.
Here are common dependency setups for different loaders and build systems.
…
For Forge Gradle users, you will need to enable Mixin refmaps in your client sourceset. This can be done by adding 2 lines inside of your client runs, to look like below.
runs {
client {
// Add these two lines
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// The rest of the code that was already here
// ...
}
}
暂无开放 Issues,或尚未同步最近议题。