add 2.6.6 files

This commit is contained in:
Halbear
2026-01-25 15:22:11 +00:00
parent 25c8d56155
commit a1660f179f
403 changed files with 29538 additions and 74 deletions

View File

@@ -0,0 +1,20 @@
package hal.studios.hpm.client.renderer;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.client.renderer.entity.MobRenderer;
import net.minecraft.client.renderer.entity.EntityRendererProvider;
import hal.studios.hpm.entity.CutterMilitarisedWreckEntity;
import hal.studios.hpm.client.model.ModelcutterArmedWreck;
public class CutterMilitarisedWreckRenderer extends MobRenderer<CutterMilitarisedWreckEntity, ModelcutterArmedWreck<CutterMilitarisedWreckEntity>> {
public CutterMilitarisedWreckRenderer(EntityRendererProvider.Context context) {
super(context, new ModelcutterArmedWreck(context.bakeLayer(ModelcutterArmedWreck.LAYER_LOCATION)), 0.5f);
}
@Override
public ResourceLocation getTextureLocation(CutterMilitarisedWreckEntity entity) {
return new ResourceLocation("hpm:textures/entities/cutterweaponiseddamagedremastered.png");
}
}