Skip to content

DecentSoftware-eu/DecentHolograms

Repository files navigation

Decent Holograms

SpigotMC Downloads SpigotMC Version Tested Versions GPLv3 License

A lightweight yet very powerful hologram plugin with many features and configuration options.

Links:

Support

We are mostly active on Discord so the best way to get support is joining our Discord Server. Also, it is okay to report bugs here on GitHub or in the 'Discussion' page on the Spigot Page of Decent Holograms.

Minecraft Limitations

  • Text is always facing the player.
  • Text size or font cannot be changed.
  • Some entities make sounds. It only applies to a few entities like the Warden which makes this heartbeat sound.
  • Icons (#ICON:) are always going to rotate and bob up and down.

Contributing PR's Welcome

Pull requests are welcome. But for major changes, please create an issue to discuss the changes first.

Building

Building DecentHolograms is very simple. All you need is JDK 8+, Gradle, Git and an IDE or Command Line.

  1. Clone the project to your machine using Git.
  2. Open the project using your IDE or open a command line at the projects' location.
  3. Run gradle clean shadowJar and DecentHolograms will build.
  4. You can find the jar at ./build/libs/DecentHolograms-VERSION.jar

API

How to get DecentHolograms API into your project:

Replace VERSION with the current version of DecentHolograms. (Latest release)

Maven
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>com.github.decentsoftware-eu</groupId>
        <artifactId>decentholograms</artifactId>
        <version>VERSION</version>
        <scope>provided</scope>
    </dependency>
</dependencies>
Gradle
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    compileOnly 'com.github.decentsoftware-eu:decentholograms:VERSION'
}

bStats