Guest User

Blomph Renderer Class

a guest
Jun 9th, 2021
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class BlomphRenderer extends MobRenderer<BlomphEntity, BlomphModel<BlomphEntity>> {
  2.  
  3. protected static final ResourceLocation TEXTURE = new ResourceLocation(Eden.MODID, "textures/entity/blomph.png");
  4.  
  5. public BlomphRenderer(EntityRendererManager rendererManagerIn) {
  6. super(rendererManagerIn, new BlomphModel<>(), 0.6F);
  7. }
  8.  
  9. public ResourceLocation getTextureLocation(BlomphEntity entity) {
  10. return TEXTURE;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment