explaingit

mun1nm/viso-mod

Analysis updated 2026-05-18

0HTMLAudience · generalLicenseSetup · easy

TLDR

A Minecraft Fabric mod that exports builds as compact files, plus a web viewer that renders them as rotatable 3D isometric models.

Mindmap

mindmap
  root((Viso-Mod))
    What it does
      Exports Minecraft builds
      3D web viewer
      Isometric rendering
    Tech stack
      Fabric mod
      Three.js
      JavaScript
    Use cases
      Export a build region
      View builds in browser
      Slice through interiors
    Audience
      Minecraft players
      Builders
    Setup
      Drop jar into mods folder
      Drag file into web viewer

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Export a region of a Minecraft build using the in-game Export Wand and chat command.

USE CASE 2

View an exported build as a rotatable isometric 3D model in the browser with no install.

USE CASE 3

Slice through a structure layer by layer to inspect its interior.

USE CASE 4

Hover over blocks in the viewer to see their ID, coordinates, and properties.

What is it built with?

JavaFabricThree.jsJavaScript

How does it compare?

mun1nm/viso-mod100/rutgers-pbl-dining-2015a15n/a15n_old
Stars0
LanguageHTMLHTMLHTML
Last pushed2015-12-012016-06-18
MaintenanceDormantDormant
Setup difficultyeasyeasyeasy
Complexity1/51/5
Audiencegeneralgeneralgeneral

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min

Requires Fabric for Minecraft 26.2 to export, the web viewer needs no install.

In plain English

Viso-Mod is a two-part tool for taking a piece of a Minecraft world and viewing it as a 3D model in a web browser. The first part is a mod for Fabric, a popular Minecraft modding platform, and the second part is a viewer that runs entirely on a webpage using Three.js, a JavaScript library for 3D graphics. Exporting a build starts inside the game itself. A player picks up an Export Wand from their creative inventory, left-clicks one corner of the area they want to capture and right-clicks the opposite corner, then types a chat command with a name for the export. The mod saves everything in that region, including blocks, textures, block states, and more complex objects like chests, skulls, banners, and copper golems, into a single compressed file. It also captures details like the color tint from a biome, the glow level of redstone, the flow direction of water, and the dye color on banners, so the exported model looks like the original. For debugging, a second command saves the same data as a plain, uncompressed file instead. Viewing an export does not require installing anything. A hosted web page lets a user drag and drop the exported file straight into the browser, where it renders as a true isometric view, the classic angled look used in strategy games, that can be rotated in 90 degree steps. A slider lets a user slice through the structure layer by layer to look inside it, which is useful for inspecting the interior of a build. The viewer only renders one copy of each identical block internally rather than a full model for every block, and it skips blocks that are fully hidden inside the structure, which keeps the frame rate high even on large builds. Hovering over any block also shows its identifier, coordinates, and other properties. The project is split into two folders, one for the mod's source code and one for the web viewer's source code, each with its own separate setup instructions for anyone who wants to build or run the code locally instead of using the hosted release. It is released under the MIT license and is aimed at Minecraft players and builders who want to show off or study their creations outside the game.

Copy-paste prompts

Prompt 1
Walk me through installing viso-mod and exporting my first Minecraft build.
Prompt 2
Explain how the Y-slicer and InstancedMesh rendering work in the viso-mod web viewer.
Prompt 3
Help me set up the web-viewer folder locally instead of using the hosted version.
Prompt 4
How does viso-mod capture biome tints, redstone power, and dyed banner colors on export?

Frequently asked questions

What is viso-mod?

A Minecraft Fabric mod that exports builds as compact files, plus a web viewer that renders them as rotatable 3D isometric models.

What language is viso-mod written in?

Mainly HTML. The stack also includes Java, Fabric, Three.js.

How hard is viso-mod to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is viso-mod for?

Mainly general.

Open on GitHub → Explain another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.