TeamJM / journeymap

JourneyMap mod for Minecraft
http://journeymap.info
122 stars 10 forks source link

[Feature Request]: Add API entity display registry event #657

Open mysticdrew opened 7 months ago

mysticdrew commented 7 months ago

Describe the new feature.

Add a registry event so that Addon devs can supply an entity class and an image for entities that do not conform to the normal minecraft types we look for in JourneyMap.

Proposed event. EntityDisplayRegistrationEvent.

register(Class<Entity> cls, ResourceLocation imageLocation, Type... types)

enum Type {
  HOSTILE,
  NPC, 
  PASSIVE, 
  PET,
}

Images

No response