28 lines
976 B
Java
28 lines
976 B
Java
package net.minecraft.client.renderer.entity;
|
|
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.minecraft.client.model.HoglinModel;
|
|
import net.minecraft.client.model.geom.ModelLayers;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.entity.monster.hoglin.Hoglin;
|
|
|
|
@Environment(EnvType.CLIENT)
|
|
public class HoglinRenderer extends MobRenderer<Hoglin, HoglinModel<Hoglin>> {
|
|
private static final ResourceLocation HOGLIN_LOCATION = ResourceLocation.withDefaultNamespace("textures/entity/hoglin/hoglin.png");
|
|
|
|
public HoglinRenderer(EntityRendererProvider.Context context) {
|
|
super(context, new HoglinModel<>(context.bakeLayer(ModelLayers.HOGLIN)), 0.7F);
|
|
}
|
|
|
|
/**
|
|
* Returns the location of an entity's texture.
|
|
*/
|
|
public ResourceLocation getTextureLocation(Hoglin entity) {
|
|
return HOGLIN_LOCATION;
|
|
}
|
|
|
|
protected boolean isShaking(Hoglin entity) {
|
|
return super.isShaking(entity) || entity.isConverting();
|
|
}
|
|
}
|