Jump to content

[1.12.2] Mob texture not working


OoDone

Recommended Posts

I made a custom mob but i can't make it have a texture

package proxy;

import net.minecraft.client.renderer.entity.RenderLiving;
import net.minecraft.client.renderer.entity.RenderManager;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import javax.annotation.Nullable;

import forge.TKOR.mod.TKORMod;
import mobs.EntityGrant;


@SideOnly(Side.CLIENT)
public class RenderGrant extends RenderLiving<EntityGrant> {

	public static final ResourceLocation asd = new ResourceLocation(TKORMod.MODID + ":textures/entity/horse.png");
			
    public RenderGrant(RenderManager rendermanagerIn) {
        super(rendermanagerIn, new ModelGrant(), 0.75F);
    }

    @Nullable
    @Override
    protected ResourceLocation getEntityTexture(EntityGrant entity) {
        //String texturePath = entity.getUnicornTexturePath();
        return asd;
        		//new ResourceLocation(TKORMod.MODID+":"+texturePath);
    }
}

thats the render class image.thumb.png.e73ed1845ae803bbe8ff09bd2198c690.png and you can see that the horse.png file is in assets.tkormod.textures.entity

Link to comment
Share on other sites

this look right>?

@Override
    public void registerEntityRenderer() {
        RenderingRegistry.registerEntityRenderingHandler(EntityGrant.class, RenderGrant::new);
    
    new IRenderFactory<EntityGrant>() 
    {
    	@Override
    	public Render<? super EntityGrant> createRenderFor(RenderManager manager) 
    	{
    		return new RenderGrant(manager);
    	}
    };



    }

 

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.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.