The code below is marked deprecated, and marked to be removed soon:
private void clientSetup(final FMLClientSetupEvent event) {
ItemBlockRenderTypes.setRenderLayer(ModBlocks.BLOCK_SHORT_GRASS.get(), RenderType.cutout());
}
The source code said that it is deprecated since 1.19, what's the equivalent method for this in 1.19.3?
My idea is to have a 3d pirate hat. The hat is just basically an armor (i.e, helmet). How can I achieve this in forge 1.19.x, specifically 1.19.3?
Is it something related to the "Armor Model Renderer" or something. I am pretty new to minecraft forge modding.