This mod allows you to see a preview window of a shulker box contents when hovering above it in an inventory by pressing shift.
This mod requires Fabric (https://minecraft.curseforge.com/projects/fabric).
repositories {
maven {url "https://maven.misterpemodder.com/libs-release/"}
}
dependencies {
modCompile "com.misterpemodder.shulkerboxtooltip:shulkerboxtooltip:<VERSION>"
}
To use the API, implement the ShulkerBoxTooltipApi
interface on a class and add that as an entry point of
type "shulkerboxtooltip"
in your fabric.mod.json
as such:
"entrypoints": {
"shulkerboxtooltip": [
"com.example.mymod.MyShulkerBoxApiImpl"
]
}
See api source for documentation.