Posted February 28, 20232 yr So i got a Renderer class ```public class ExampleRenderer extends LivingEntityRenderer<ExampleEntity, PlayerModel<ExampleEntity>> { @Override public void render() {} }``` And i want to replace/override this class to Minecraft Forge's Player Renderrer to render player using my custom class What should i do? I had no idea
March 1, 20232 yr 20 hours ago, None283 said: What should i do? I had no idea Well, the best you can do is to cancel the PlayerRenderEvent$Pre and then call the render method in the renderer you are creating. You could also just perform the logic directly without the renderer.
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.