Posted February 15, 201411 yr Hello guys. So I made an entity, model and render file and it works. Only problem is that my entity keeps on jumping around and stuff. Heres my render file: package rotten_flesh_mod; import net.minecraft.client.model.ModelBase; import net.minecraft.client.renderer.entity.RenderLiving; import net.minecraft.entity.Entity; import net.minecraft.entity.passive.EntityCow; import net.minecraft.util.ResourceLocation; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) public class RenderTamedZombie extends RenderLiving { private static final ResourceLocation Your_Texture = new ResourceLocation("rotten_flesh_mod:textures/entity/tamedZombie.png"); //refers to:assets/yourmod/textures/entity/yourtexture.png public RenderTamedZombie(ModelBase par1ModelBase, float par2) { super(par1ModelBase, par2); } protected ResourceLocation getTamedTextures(EntityTamedZombie par1EntityCow) { return Your_Texture; } @Override protected ResourceLocation getEntityTexture(Entity par1Entity) { return this.getTamedTextures((EntityTamedZombie)par1Entity); } } Heres a video of what happened. http://i1294.photobucket.com/albums/b605/starwarsmace/th_javaw2014-02-1512-08-05-176_zps2e3d193e.jpg[/img] Click the img to see the video. I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
February 15, 201411 yr Author Anyone? I'm back from being gone for... I think its been about a year. I'm pretty sure nobody remembers me, but hello anybody who does!
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.