24 mai 2014, 18:34

Salut !

Je n’arrive pas a appliqué le model pour je pence avoir touts réussi mais il faut croire que non 🙂

Voici la class de mon clientproxy:

@Override

public void registerRender()
{

RenderingRegistry.registerEntityRenderingHandler(EntityAniZob.class, new RenderAnizob(new test(), 0.5f));
}

Et voici la classe du rendu de mon mob :

package modCrafttech.proxy;

import modCrafttech.common.EntityAniZob;
import net.minecraft.client.model.ModelBiped;
import net.minecraft.client.renderer.entity.Render;
import net.minecraft.client.renderer.entity.RenderBiped;
import net.minecraft.entity.Entity;
import net.minecraft.util.ResourceLocation;

public class RenderAnizob extends RenderBiped {
protected static final ResourceLocation texture = new ResourceLocation("ModID:texture.png");

public RenderAnizob(ModelBiped biped, float tailleOmbre)
{
super(biped, tailleOmbre);
}

protected ResourceLocation getAniZobTextures(EntityAniZob anizob)
{
return texture;
}

protected ResourceLocation getEntityTexture(Entity par1Entity)
{
return this.getAniZobTextures((EntityAniZob)par1Entity);
}

}

J’ai une erreur a cette ligne la :

RenderingRegistry.registerEntityRenderingHandler(EntityAniZob.class, new RenderAnizob(new test(), 0.5f));

Cordialement Sidney