Skip to content

PZDonny/DisplayEntityUtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DisplayEntityUtils

Join the Discord Here!

DisplayEntityUtils makes handling customizable display entities simpler.

Supported Entities

  • Block Displays
  • Text Displays
  • Item Displays
  • Interactions
  • Mannequins

Dependencies

Supports BDEngine (Recommended)

  • BDEngine is a modeling and animation engine designed for display entities, without the need for resource packs or mods
  • The created models and animations can be transferred into your game world and reused with DisplayEntityUtils.

DISCLAIMER: I DO NOT OWN BDEngine! ALL ISSUES AND SUGGESTIONS RELATED TO THAT PROJECT SHOULD BE BROUGHT TO THE OWNER, ILLYSTRAY, IN THE BDENGINE DISCORD FOUND HERE

What can DisplayEntityUtils do?

  • Manipulate Display Entities
  • Manipulate Interaction Entities
  • Manipulate Mannequin Entities
  • Save and load BDEngine models
  • Manipulate entities in a model/group
  • Integration with Skript

SkriptHubViewTheDocs

  • Save/Load/Play BDEngine Animations
  • Interaction entity click commands
  • Intergration with MythicMobs
  • Create Animation State Machines
  • Save groups and animations through Local Storage, MySQL, or MongoDB
  • And so much more!

What more can it do for API/Skript users?

  • Manipulate Display/Interaction/Mannequin entities
  • Manage group visibility for players
  • Mount groups on entities (or vice-versa)
  • Request models from BDEngine's website
  • Play animations

Showcases

  • Display Controllers (Using Models as cosmetic equipment) - With(out) MythicMobs

ezgif-1-873ca90c95 (1)

  • Display Controllers (Creating Animation State Machines) - With(out) MythicMobs

Dodo Bird Model and Animations by Yegor_Mechanic

WIKI

Access the wiki HERE

Plugin API

API for v3.3.0+

<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>

API for versions before v3.3.0

<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>