A lightweight yet very powerful hologram plugin with many features and configuration options.
Links:
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.
- 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.
Pull requests are welcome. But for major changes, please create an issue to discuss the changes first.
Building DecentHolograms is very simple. All you need is JDK 8+, Gradle, Git and an IDE or Command Line.
- Clone the project to your machine using Git.
- Open the project using your IDE or open a command line at the projects' location.
- Run
gradle clean shadowJar
and DecentHolograms will build. - You can find the jar at
./build/libs/DecentHolograms-VERSION.jar
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'
}