一个轻量级但功能强大的全息显示插件,拥有众多功能和配置选项。
注意: 这是 DecentHolograms 的中文汉化版本。原版项目请访问 decentsoftware-eu/decentholograms
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 shadowJarand DecentHolograms will build. - You can find the jar at
./plugin/build/libs/DecentHolograms-VERSION.jar
How to get DecentHolograms API into your project:
Replace
VERSIONwith 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'
}