Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Avatar for TheNextLvl

A modern hologram library using the new display api

Report HologramAPI?

Holograms

Holograms is a powerful plugin that allows you to create and manage holographic displays in your Minecraft server.With the HologramAPI, you can easily add user-specific and static holograms to enhance the gameplay experience.

Table of Contents

Versions

Important

Holograms only supports the latest version of Paper (1.20.6)
The latest version of Holograms requires Java 21

Latest version supporting 1.19-1.20.4 (Java 19)
Latest version supporting 1.19-1.20.2 (Java 17)

Repository

To seamlessly integrate our library into your project, please visit our repository. Select your preferred build tool and incorporate the version you intend to use.

Gradle Example

For Gradle users, add the repository and dependency to your build.gradle.kts:

repositories {
    maven("https://repo.thenextlvl.net/releases")
}

dependencies {
    compileOnly("net.thenextlvl.holograms:api:version")
}

Note: Be sure to replace version with the actual version number. Also note that you shouldn't shade the API as it is already provided by the plugin.

Getting Started

To get started with Holograms, you'll need to access various components of the API. Here's how you can do that:

Get the HologramProvider

HologramProvider provider = Bukkit.getServicesManager().getRegistration(HologramProvider.class).getProvider();

The Hologram Provider serves as the foundation for all the capabilities offered by the Hologram API.

Get the HologramLoader

HologramLoader loader = provider.getHologramLoader();

The Hologram Loader is responsible for the dynamic management of holograms, including loading, unloading, updating, and teleporting them for specific players.

Get the HologramRegistry

HologramRegistry registry = provider.getHologramRegistry();

The Hologram Registry plays a crucial role in managing static holograms.

Get the HologramFactory

HologramFactory factory = provider.getHologramFactory();

The factory is your go-to tool for creating new holograms and hologram lines.

Creating Holograms

To create a hologram, use the HologramFactory:

Hologram hologram = factory.createHologram(location, factory.createTextLine(display -> {
    display.text("Your Text Here");
}));

Note: hologram objects are not yet rendered, first you have to either register or load them.

Static Holograms

Static holograms are holograms that are visible to all players, providing a consistent viewing experience for everyone. They are commonly used to display static content without user-specific data. Importantly, the loading and unloading of static holograms are fully automated, requiring no manual intervention.

Registering

To add a static hologram, simply call the register method from the HologramRegistry:

registry.register(hologram);

This will add the static hologram for everyone.

Unregistering

To remove a static hologram, call the unregister method from the HologramRegistry:

registry.unregister(hologram);

This will remove the static hologram for everyone.

User-Specific Holograms

User-Specific Holograms are unique holograms that are exclusively visible to the players for whom they are loaded. They are typically used to display personalized text or data. However, it's important to note that the loading and unloading of these holograms must be managed manually.

Loading

To load a user-specific hologram, simply call the load method from the HologramLoader:

loader.load(hologram, player);

This will load the hologram for the specified player.

Unloading

To remove a user-specific hologram, call the unload method from the HologramLoader:

loader.unload(hologram, player);

This will remove the hologram displayed for the specified player.

Note: In future updates, we are planning to merge the concepts of user-specific and static holograms to create an even simpler and more streamlined method for loading and managing holograms. This enhancement will provide a more straightforward way to handle holographic displays in your server.

Information

CategoryDeveloper Tools
Published onOctober 11, 2023
LicenseGPL
Downloads36
Stars1
Watchers1
Library

Pinned Versions

Members