many231 Posted November 28, 2014 Posted November 28, 2014 Hi, so I have an error in code for my render class for my mob. The error is The constructor RenderLiving(EntityRenderer, ModelMob, float) is undefined RenderEntity package com.many231.mob; import net.minecraft.client.Minecraft; import net.minecraft.client.renderer.entity.RenderLiving; import net.minecraft.entity.Entity; import net.minecraft.util.ResourceLocation; import com.many231.deer.ModelMob; public class RenderDeer extends RenderLiving { private static final ResourceLocation texture = new ResourceLocation("mob:mob_texture.png"); public RenderMob() { super(Minecraft.getMinecraft().entityRenderer, new ModelMob(), 0.6F); } protected ResourceLocation getEntityTexture(Entity entity) { return texture; } } Render Class Mob = My mobs name Please help if you can! Quote
brandon3055 Posted November 28, 2014 Posted November 28, 2014 RenderMob should be RenderDeer the constructor needs to have the same name as the class. Quote I am the author of Draconic Evolution
Recommended Posts
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.