Jump to content

[1.19.4] Force pose of living entity


LeeCrafts

Recommended Posts

I would like to force the pose of a living entity to a standing position (i.e. Pose.STANDING) when it is riding a certain vehicle. I have tried to call Entity#setPose every tick via LivingTickEvent, but the living entity remains in a sitting position.

Here is my code:

// I made it a low-priority event because I was wondering if the code should be executed at the end of each tick.
@SubscribeEvent(priority = EventPriority.LOWEST)
public static void livingTickEvent(LivingEvent.LivingTickEvent event) {
    LivingEntity livingEntity = event.getEntity();
    if (!livingEntity.level.isClientSide && livingEntity.getVehicle() instanceof TheVehicle) {
        livingEntity.setPose(Pose.STANDING);
    }
}

 

By the way, I am aware there is a setForcedPose method, but it's only for the Player class.

Edited by LeeCrafts
Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.