Back to mods
OpenNavigation project artwork

CurseForge · Hytale mod

OpenNavigation

Navigation for Hytale user interfaces. A library giving your mod back buttons and breadcrumb trails without writing the history yourself.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which OpenNavigation release should I use?

Updated 9 days ago
Latest stable file OpenNavigation 1.0.0
Game version 0.6
Mod system Built-in Hytale mod system

OpenNavigation 1.0.0 targets 0.6. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should OpenNavigation be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does OpenNavigation 1.0.0 need?

OpenNavigation 1.0.0. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add OpenNavigation without breaking your instance.

Built for OpenNavigation 1.0.0. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use OpenNavigation 1.0.0. It targets 0.6; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside OpenNavigation 1.0.0. It opens that exact file at the source.

About this project

What does OpenNavigation add?

OpenNavigation

🧭 User interface navigation for Hytale. Back buttons and breadcrumb trails, without writing the history yourself.

A library for mod authors. On its own it shows a player nothing — it is what other mods stand on.

Discord GitHub


🤔 The problem it solves

A Hytale server holds one custom page at a time. Open a second, and the first is dismissed with no warning. So the moment two of your screens need a way back — or two different mods both want a screen — somebody has to remember where the player was.

OpenNavigation is that somebody. It keeps one history per player, and tells whoever owns the screen when to draw.


✨ What you get

🔙 A back button that works. pop(player) and the player is where they were. No stack of your own, no page ids to juggle.

🍞 Breadcrumb trails. Walk back from where the player stands and you have the trail — with the depth of each step already counted.

🗂️ Tabs that remember. A tab is a history of its own. Leave one, come back, and the player is where they left it rather than at the top.

🎒 A context on every route. Hang the quest, the shop, the page — whatever that place is about — on the route itself and read it back typed.

🤝 Several mods, one history. Routes carry the namespace of the mod that owns them. Going back out of your screen and into another mod's just works, because that mod is the one told to draw it.

🚫 It never draws. No frame, no stylesheet, no document of ours to fit into. Your screen stays yours.

Tested. The model is plain Java with no server behind it, covered by unit tests that run on every build.


🧩 How it works

Three calls and an event.

// Open your interface: a fresh history that starts here
NavigationService.get().root(player, new StackRoute("mymod", "shop"));

// Go one level in
NavigationService.get().push(player, new StackRoute("mymod", "shop:item:" + id));

// The back button
NavigationService.get().pop(player);

Nothing above opens a page. Each move announces itself, and you draw:

plugin.getEventRegistry().register(RouteChangedEvent.class, "mymod", event -> {
    // event.getRoute() is where the player now stands. Open your page, or redraw it.
});

Subscribing on your own namespace means you hear about your routes and nobody else's — and a route no mod claims reaches registerUnhandled instead of quietly doing nothing.


🗺️ Kinds of route

Type What it is
StackRoute One place, carrying at most one other. The ordinary way forward.
TabRoute Several places at once, one showing. Each tab keeps its own history.

Both are open to extend, so your route can be a class of your own carrying whatever it needs.


🛠️ The whole service

root · push · pop · navigate · replace · reload · setActiveTab · search · getRoute

navigate goes back to a place already visited and cuts what followed — or pushes it if the player has never been there. That is the breadcrumb click, in one call.


📦 Installing

Running a server? Drop the jar in mods/ and you are done. Nothing to edit: a mod that needs OpenNavigation already asks for it.

Writing a mod? Declare it in the manifest.json your own mod ships:

"Dependencies": {
  "MartelStudios:OpenNavigation": "*"
}

A history lives as long as the session and is never written to disk: where a player stands is a fact about right now, and handing it back after a restart would drop them behind a screen they never opened.


👀 Seen in the wild

OpenQuests uses it for its quest journal: the tabs, the trail across nested quests, and the way back out of a quest you opened from another one.


📄 License

MIT. Source on GitHub.

Project description from CurseForge.

Pick your setup

OpenNavigation releases for each Hytale build.

Choose the version and loader you play, then open the matching release.

1 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

OpenNavigation releases and Hytale builds

1 of 1 releases match

Looking for an older file? The official CurseForge project page is in Resources.