Inspectability Reforged

Quick rating

Inspectability Reforged

No reviews yet

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

QoL & Tweaks
Mod Loaders
Forge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Unsupported

About

Project Details

Type
Mod
License
MIT License
Latest Version
InspectabilityReforged-fabric-1.20.1-1.0.1-beta1
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Inspectability Reforged

demo.gif?raw=true

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

forge fabric 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

  • 🎥 Smooth and intuitive 3D viewer with mouse control
  • 🔍 Adjust scale, rotation, and offset
  • 🧠 Ideal for creators testing resource packs or mods
  • 🧼 No server-side installation needed — client-only

✨ Reforged Additions

  • 🐄 Entity & Equipment Inspection Support: Spawn Eggs, Minecarts, Boats, Armor, and more are now dynamically rendered as their actual entities instead of flat items.
  • 🎨 Automatic Variant Support: Dynamic support for entities with multiple variants (like Paintings, Frogs, Cats, etc.) without manual configuration.
  • ⚙️ Inspector Builder API: A powerful API allowing other modders to register custom viewing logic, entities, and variants with just a few lines of code.
  • 🤸 Roll Rotation: Hold Ctrl + Left-Click horizontal drag to roll the item.

🚀 Planned Features

  • JEI, REI, and EMI compatibility
  • Timeless and Classics Zero (TaC:Z) compatibility
  • Alex's Mobs compatibility
  • Create compatibility
  • Interactive Mode implementation
  • Entity Inspector Magnifying Glass & Record Book (Planned to be released as a separate server-side add-on for Survival mode, requiring this mod as a dependency)

❓ 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

Simple Documentation


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

Inspectability Reforged

demo.gif?raw=true

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

  • 🎥 Smooth and intuitive 3D viewer with mouse control
  • 🔍 Adjust scale, rotation, and offset
  • 🧠 Ideal for creators testing resource packs or mods
  • 🧼 No server-side installation needed — client-only

✨ Reforged Additions

  • 🐄 Entity & Equipment Inspection Support: Spawn Eggs, Minecarts, Boats, Armor, and more are now dynamically rendered as their actual entities instead of flat items.
  • 🎨 Automatic Variant Support: Dynamic support for entities with multiple variants (like Paintings, Frogs, Cats, etc.) without manual configuration.
  • ⚙️ Inspector Builder API: A powerful API allowing other modders to register custom viewing logic, entities, and variants with just a few lines of code.
  • 🤸 Roll Rotation: Hold Ctrl + Left-Click horizontal drag to roll the item.

🚀 Planned Features

  • JEI, REI, and EMI compatibility
  • Timeless and Classics Zero (TaC:Z) compatibility
  • Alex's Mobs compatibility
  • Create compatibility
  • Interactive Mode implementation
  • Entity Inspector Magnifying Glass & Record Book (Planned to be released as a separate server-side add-on for Survival mode, requiring this mod as a dependency)

❓ 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

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works