Posted May 20, 20205 yr I am looking to spawn special particles at the position of an entity's corpse after it has disappeared and made the poof particles. Currently the LivingDeathEvent, LivingDropsEvent and LivingExperienceDropEvent all trigger as soon as the entity dies, meaning the position of the entity supplied to the event is different to where its corpse lands and turns into smoke particles. Is there an event I can use that would give me the position of an entity's corpse AFTER it has disappeared? Or is there a way to get this position from the events i already mentioned? Or did I miss one?
May 20, 20205 yr Author Thanks for the info! Would I go about it like this? @SubscribeEvent public static void onAttachCapabilities(AttachCapabilitiesEvent<Entity> event) { if (event.getObject() instanceof LivingEntity) { event.addListener(new Runnable() { public void run() { } }); } }
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.