Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

[SOLVED] modelBiped arm rendered on wrong player [1.12.2]

Featured Replies

Posted

so i have a pose which should be rendered when the player is mediating, which works fine but only in singleplayer.

somehow in multiplayer the player who mediates his arms are rendered correctly on the client but other players see him with no arms and his arms are rendered on their own model.

 

here is a screenshot though its hard to show it properly..

 

image.png.ba9554656ce76f65e2f4b6d1de6ba560.png

player who meditates:

image.png.58492cb3dc91a31123ca10a3f79a4915.png

 

in RenderPlayerEvent.Pre i set the arms hidden and in the post event i set the rotation and render the arm:

if(event.getEntityPlayer().getCapability(NenProvider.NEN_CAP, null).isMeditating()) {
				event.getRenderer().getMainModel().bipedRightArm.isHidden = false;
				event.getRenderer().getMainModel().bipedRightArm.rotationPointZ = -MathHelper.sin((float) Math.toRadians(event.getEntityPlayer().renderYawOffset)) * 5.0F;
				event.getRenderer().getMainModel().bipedRightArm.rotationPointY = 20;
				event.getRenderer().getMainModel().bipedRightArm.rotationPointX = -MathHelper.cos((float) Math.toRadians(event.getEntityPlayer().renderYawOffset)) * 5.0F;
				event.getRenderer().getMainModel().bipedRightArm.rotateAngleX = (float) -1.0;
				event.getRenderer().getMainModel().bipedRightArm.rotateAngleY = (float) -Math.toRadians(event.getEntityPlayer().renderYawOffset);
				event.getRenderer().getMainModel().bipedRightArm.rotateAngleZ = (float) 3.4;
				event.getRenderer().getMainModel().bipedRightArm.renderWithRotation(0.0625F);
				event.getRenderer().getMainModel().bipedRightArm.rotationPointY = 2;
				
				event.getRenderer().getMainModel().bipedLeftArm.isHidden = false;
				event.getRenderer().getMainModel().bipedLeftArm.rotationPointZ = -MathHelper.sin((float) Math.toRadians(event.getEntityPlayer().renderYawOffset)) * -5.0F;
				event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = 20;
				event.getRenderer().getMainModel().bipedLeftArm.rotationPointX = -MathHelper.cos((float) Math.toRadians(event.getEntityPlayer().renderYawOffset)) * -5.0F;
				event.getRenderer().getMainModel().bipedLeftArm.rotateAngleX = (float) -1.0;
				event.getRenderer().getMainModel().bipedLeftArm.rotateAngleY = (float) -Math.toRadians(event.getEntityPlayer().renderYawOffset);
				event.getRenderer().getMainModel().bipedLeftArm.rotateAngleZ = (float) -3.4;
				event.getRenderer().getMainModel().bipedLeftArm.renderWithRotation(0.0625F);
				event.getRenderer().getMainModel().bipedLeftArm.rotationPointY = 2;
			}

 

Edited by eatthenight

1 hour ago, eatthenight said:

in RenderPlayerEvent.Pre i set the arms hidden and in the post event i set the rotation and render the arm:

Post all of your code that is in the Pre and Post event.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author
3 minutes ago, Animefan8888 said:

Post all of your code that is in the Pre and Post event.

in the pre event i only set the arms hidden and i dont have anything else in my post event either aside from what i posted. 

1 hour ago, eatthenight said:

in the post event i set the rotation and render the arm:

Looks like you need to GLStateManager.translate in the post event to the player in question because it is translated back before the post event is fired.

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

  • Author
14 hours ago, Animefan8888 said:

Looks like you need to GLStateManager.translate in the post event to the player in question because it is translated back before the post event is fired.

so i tried to translate by using some test values and it seems the other player sees the player who meditates with no arms so now its not even rendered?

on the client who meditates its rendered with the offset i used for GLStateManage.translate...

EDIT: the client player only sometimes gets the data if the player meditates seems like i have to fix my packets for meditating.

Edited by eatthenight

  • Author
14 hours ago, Animefan8888 said:

Looks like you need to GLStateManager.translate in the post event to the player in question because it is translated back before the post event is fired.

works now after fixing my packets but somehow the arm texture is not rendered correctly on other clients..

 

667769821_DesktopScreenshot2019_09_09-16_32_33_38.png.5e266b744d00e8f22af0f14b2193a852.png

You have to call "event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)event.getEntityPlayer()));" before rendering.

  • Author
33 minutes ago, Lyon said:

You have to call "event.getRenderer().bindTexture(event.getRenderer().getEntityTexture((AbstractClientPlayer)event.getEntityPlayer()));" before rendering.

thanks fixed it!

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

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.