Jump to content

[1.17.1]What is the name of class "RenderingRegistry"(in 1.16) now?


QWERTY 52 38

Recommended Posts

Here is my code to register entity renderers in 1.16. It doesn't work in 1.17.

@Mod.EventBusSubscriber(modid = McbbsWiki.ID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT)
public class ClientSetupEvent {
    @SubscribeEvent
    public static void onClientSetUpEvent(FMLClientSetupEvent event) {
        RenderingRegistry.registerEntityRenderingHandler(EntityRegistry.entity_small_mcbbswiki_monster.get(), SmallMcbbsWikiMonsterRender::new);
        // and so on
    }
}

There isn't a class called "RenderingRegistry" in 1.17. So how can I register entity renderers?

Link to comment
Share on other sites

In 1.17 you need to subscribe to EntityRenderersEvent.RegisterRenderers and then use the registerEntityRenderer method.
You'll also need to subscribe to EntityRenderersEvent.RegisterLayerDefinitions and then use the registerLayerDefinition method to register a layer.
You can find more on that here.

Link to comment
Share on other sites

17 hours ago, uSkizzik said:

In 1.17 you need to subscribe to EntityRenderersEvent.RegisterRenderers and then use the registerEntityRenderer method.
You'll also need to subscribe to EntityRenderersEvent.RegisterLayerDefinitions and then use the registerLayerDefinition method to register a layer.
You can find more on that here.

Thank you!

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.