38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
package net.minecraft.client.renderer.entity.layers;
|
|
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.minecraft.client.model.EntityModel;
|
|
import net.minecraft.client.model.WitherBossModel;
|
|
import net.minecraft.client.model.geom.EntityModelSet;
|
|
import net.minecraft.client.model.geom.ModelLayers;
|
|
import net.minecraft.client.renderer.entity.RenderLayerParent;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.util.Mth;
|
|
import net.minecraft.world.entity.boss.wither.WitherBoss;
|
|
|
|
@Environment(EnvType.CLIENT)
|
|
public class WitherArmorLayer extends EnergySwirlLayer<WitherBoss, WitherBossModel<WitherBoss>> {
|
|
private static final ResourceLocation WITHER_ARMOR_LOCATION = ResourceLocation.withDefaultNamespace("textures/entity/wither/wither_armor.png");
|
|
private final WitherBossModel<WitherBoss> model;
|
|
|
|
public WitherArmorLayer(RenderLayerParent<WitherBoss, WitherBossModel<WitherBoss>> renderer, EntityModelSet modelSet) {
|
|
super(renderer);
|
|
this.model = new WitherBossModel<>(modelSet.bakeLayer(ModelLayers.WITHER_ARMOR));
|
|
}
|
|
|
|
@Override
|
|
protected float xOffset(float tickCount) {
|
|
return Mth.cos(tickCount * 0.02F) * 3.0F;
|
|
}
|
|
|
|
@Override
|
|
protected ResourceLocation getTextureLocation() {
|
|
return WITHER_ARMOR_LOCATION;
|
|
}
|
|
|
|
@Override
|
|
protected EntityModel<WitherBoss> model() {
|
|
return this.model;
|
|
}
|
|
}
|