HomeJavaModsInspectability Reforged
Inspectability Reforged
ModsJava

Inspectability Reforged

by hikoma0000 · on Modrinth

A mod that allows players to inspect item models in-game, providing a closer and detailed view of the item's appearance.

⬇ Download on Modrinth

Inspectability Reforged

This mod is an unofficial port of gifluana/Inspectability, featuring numerous new features and improvements.

forge neoforge architectury-api

issues-and-suggestions-on-github

Ever wanted to zoom in, rotate, and inspect your favorite item models up close — right inside the game?

Inspectability Reforged is a lightweight client-side mod that lets players open a 3D inspector screen for any item, allowing full control over rotation, position, and zoom. Whether you're a texture artist, model maker, content creator, or just a curious explorer — this mod gives you the perfect tool to appreciate your items in detail.


🛠 Features

Core Features

✨ Reforged Additions

🚀 Planned Features


❓ Frequently Asked Questions

Q: Is this mod compatible with modpacks and other content?
A: Yes! You can use Inspectability in any modpack or video content. Just credit it properly.

Q: Can I use it to inspect modded items too?
A: Absolutely. If the item has a model, Inspectability can show it. With the new Inspector Builder API, modders can also easily add custom logic for their items!

Q: Does this affect gameplay?
A: Not at all. It's entirely optional and cosmetic — just open the viewer when you want.


👨‍💻 For Developers

Inspectability Reforged provides an easy-to-use API to help you integrate inspection features into your own mods.

InspectabilityAPI

You can easily hook into and open the inspection screen for specific ItemStacks, Entity objects, or even custom view states from your client-side code:

import io.github.hikoma0000.inspectability.client.api.InspectabilityAPI;
import io.github.hikoma0000.inspectability.client.api.StandardViewState;
import java.util.List;

// 1. Open default inspector for an ItemStack
InspectabilityAPI.inspect(new ItemStack(Items.DIAMOND));

// 2. Open inspector for an Entity
Entity myEntity = EntityType.COW.create(Minecraft.getInstance().level);
InspectabilityAPI.inspect(myEntity);

// 3. Completely override the view states!
// You can freely pass ANY combination of states. 
// (e.g. only Block, or multiple custom Entities, or both)
InspectabilityAPI.inspect(new ItemStack(Items.CHEST), List.of(
    StandardViewState.BLOCK, // Show just the block form
    customEntityState1,      // Show a custom entity
    customEntityState2       // Show another custom entity
));

InspectorStateRegistry

If you want to configure how your custom items or entities should be viewed by default when the user presses the inspect key, you can register custom View States during initialization:

import io.github.hikoma0000.inspectability.client.api.InspectorStateRegistry;

InspectorStateRegistry.register(MyCustomItem.class, CustomViewStateConfig.builder("my_custom_view")
    .entity((mc, stack) -> new MyCustomEntity(mc.level))
    .build());

The full documentation is coming soon..


License

The resources in this repository (including directories below) have been entirely recreated by hikoma0000. Therefore, the original "All Rights Reserved" restrictions have been removed, and these resources are now released under the MIT License.

/common/src/main/resources/ /fabric/src/main/resources/ /forge/src/main/resources/


My Mods

Realistic-Nametag Advancement-Trophies-Reforged

Quick facts

Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.

Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more