All Projects → MisterPeModder → ShulkerBoxTooltip

MisterPeModder / ShulkerBoxTooltip

Licence: MIT license
What's in my shulker box?

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to ShulkerBoxTooltip

Randomly-Adding-Anything
No description or website provided.
Stars: ✭ 42 (-33.33%)
Mutual labels:  mod, minecraft-mod, fabricmc
ImageWorldGenerator
A minecraft mod to generate a world from an image/map
Stars: ✭ 20 (-68.25%)
Mutual labels:  mod, minecraft-mod, fabricmc
kibe
A miscellaneous mod for Minecraft that adds a bunch of random, and mostly unoriginal things.
Stars: ✭ 42 (-33.33%)
Mutual labels:  mod, minecraft-mod, fabricmc
NaturesCompass
A Minecraft mod that allows you to search for a biome's location anywhere in the world and view information about it.
Stars: ✭ 42 (-33.33%)
Mutual labels:  mod, minecraft-mod, fabricmc
refinedstorage2
Refined Storage is a mass storage mod for Minecraft that offers the player a network-based storage system, allowing them to store items and fluids on a massively expandable device network.
Stars: ✭ 35 (-44.44%)
Mutual labels:  mod, minecraft-mod, fabricmc
the-hallow
Fabric Community mod for Hacktoberfest!
Stars: ✭ 14 (-77.78%)
Mutual labels:  mod, minecraft-mod, fabricmc
Fabric-Autoswitch
Automagical switching of tools to the best one for the job, for Minecraft
Stars: ✭ 17 (-73.02%)
Mutual labels:  mod, minecraft-mod, fabricmc
Chisel
A builder's best friend
Stars: ✭ 131 (+107.94%)
Mutual labels:  mod, minecraft-mod
Baubles
A mod api that adds 7 bauble slots to the players inventory.
Stars: ✭ 143 (+126.98%)
Mutual labels:  mod, minecraft-mod
Agricraft
The source code for the Minecraft mod: AgriCraft
Stars: ✭ 160 (+153.97%)
Mutual labels:  mod, minecraft-mod
Academycraft
A Minecraft mod about superability
Stars: ✭ 181 (+187.3%)
Mutual labels:  mod, minecraft-mod
Chisels And Bits
A Minecraft mod about chiseling and designing custom blocks in game.
Stars: ✭ 119 (+88.89%)
Mutual labels:  mod, minecraft-mod
Viafabric
Client-side and server-side ViaVersion implementation for Fabric
Stars: ✭ 115 (+82.54%)
Mutual labels:  mod, minecraft-mod
Crafttweaker
Tweak your minecraft experience
Stars: ✭ 146 (+131.75%)
Mutual labels:  mod, minecraft-mod
Antiqueatlas
A Minecraft mod that adds a fancy interactive map item.
Stars: ✭ 110 (+74.6%)
Mutual labels:  mod, minecraft-mod
The Betweenlands
A dark, hostile environment...
Stars: ✭ 167 (+165.08%)
Mutual labels:  mod, minecraft-mod
Armourers Workshop
Minecraft armour customization mod.
Stars: ✭ 92 (+46.03%)
Mutual labels:  mod, minecraft-mod
Ice and fire
Minecraft mystical mod
Stars: ✭ 164 (+160.32%)
Mutual labels:  mod, minecraft-mod
MythicMetals
Fabric based Minecraft mod that adds new materials into the game. Includes new tools, ores, anvils, and sets of armor.
Stars: ✭ 35 (-44.44%)
Mutual labels:  mod, minecraft-mod
grakkit
A modern JavaScript development environment for Minecraft.
Stars: ✭ 184 (+192.06%)
Mutual labels:  mod, minecraft-mod

Shulker Box Tooltip
Maven CursreForge Modrinth CI Crowdin

This mod allows you to see a preview window of a shulker box contents when hovering above it in an inventory by pressing shift.

Help translate ShulkerBoxTooltip on Crowdin!
Please vote for this to be included in vanilla!

Preview Window

Developers

List of artifacts

  • com.misterpemodder:shulkerboxtooltip-common: Platform-agnostic API
  • com.misterpemodder:shulkerboxtooltip-fabric: Fabric Implementation
  • com.misterpemodder:shulkerboxtooltip-forge: Forge-specific API + Implementation

Declaring the dependency (Fabric Loom/Architectury Loom)

repositories {
    maven {url "https://maven.misterpemodder.com/libs-release/"}
}

dependencies {
    // Change to 'shulkerboxtooltip-forge' or 'shulkerboxtooltip-common' depending on the artifact
    modCompileOnly modRuntimeOnly("com.misterpemodder:shulkerboxtooltip-fabric:VERSION")
}

API

To use the API, implement the ShulkerBoxTooltipApi interface on a class and register it as a plugin.

On Fabric, add your plugin class as an entry point of type "shulkerboxtooltip" in your fabric.mod.json as such:

"entrypoints": {
    "shulkerboxtooltip": [
      "com.example.mymod.MyShulkerBoxTooltipPlugin"
    ]
}

On Forge, register your plugin by adding an extension point in your mod's initialization code:

ModLoadingContext.get().registerExtensionPoint(ShulkerBoxTooltipPlugin.class,
    () -> new ShulkerBoxTooltipPlugin(MyModShulkerBoxTooltipPlugin::new));

See api source for documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].