minecraft-src/net/minecraft/client/renderer/entity/GiantMobRenderer.java
2025-07-04 03:15:13 +03:00

43 lines
1.7 KiB
Java

package net.minecraft.client.renderer.entity;
import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.client.model.GiantZombieModel;
import net.minecraft.client.model.HumanoidModel;
import net.minecraft.client.model.geom.ModelLayers;
import net.minecraft.client.renderer.entity.layers.HumanoidArmorLayer;
import net.minecraft.client.renderer.entity.layers.ItemInHandLayer;
import net.minecraft.client.renderer.entity.state.ZombieRenderState;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.entity.monster.Giant;
@Environment(EnvType.CLIENT)
public class GiantMobRenderer extends MobRenderer<Giant, ZombieRenderState, HumanoidModel<ZombieRenderState>> {
private static final ResourceLocation ZOMBIE_LOCATION = ResourceLocation.withDefaultNamespace("textures/entity/zombie/zombie.png");
public GiantMobRenderer(EntityRendererProvider.Context context, float scale) {
super(context, new GiantZombieModel(context.bakeLayer(ModelLayers.GIANT)), 0.5F * scale);
this.addLayer(new ItemInHandLayer<>(this));
this.addLayer(
new HumanoidArmorLayer<>(
this,
new GiantZombieModel(context.bakeLayer(ModelLayers.GIANT_INNER_ARMOR)),
new GiantZombieModel(context.bakeLayer(ModelLayers.GIANT_OUTER_ARMOR)),
context.getEquipmentRenderer()
)
);
}
public ResourceLocation getTextureLocation(ZombieRenderState zombieRenderState) {
return ZOMBIE_LOCATION;
}
public ZombieRenderState createRenderState() {
return new ZombieRenderState();
}
public void extractRenderState(Giant giant, ZombieRenderState zombieRenderState, float f) {
super.extractRenderState(giant, zombieRenderState, f);
HumanoidMobRenderer.extractHumanoidRenderState(giant, zombieRenderState, f, this.itemModelResolver);
}
}