-
Notifications
You must be signed in to change notification settings - Fork 6
Home
Jay edited this page Sep 25, 2025
·
48 revisions
DisplayEntityUtils is a Paper 1.20.4+ Plugin made with the intent to make manipulating display entities easier, especially when paired with models/animations created from BDEngine. This wiki should help you get started with using this plugin and it's API.
Important
Bug fixes and updates will only be made with the latest version of Minecraft in-mind. Using this plugin on older-versions of the game should be used as your own risk, as all features are not guaranteed to work. Rolling back to an older plugin version, after using a newer one may results in errors.
-
This dependency allows for usage of packet-based display entities, and is used throughout the plugin
-
Start here
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.PZDonny.DisplayEntityUtils</groupId>
<artifactId>api</artifactId>
<version>PLUGIN-VERSION</version>
<scope>provided</scope>
</dependency><repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.PZDonny</groupId>
<artifactId>DisplayEntityUtils</artifactId>
<version>PLUGIN-VERSION</version>
<scope>provided</scope>
</dependency>