/
Belyash5
/
Flu
Обзор
Документация
Войти
/
Belyash5
/
Flu
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/hbm/render/model/ModelSkeletonNT.java
29 строк
1 KB
Boblet
it's not rocket science
28 мар 2025, 16:34
28 мар 2025, 16:34
6ae779c
Код
Авторство
О чём код?
package com.hbm.render.model; import net.minecraft.client.model.ModelRenderer; import net.minecraft.client.model.ModelZombie; public class ModelSkeletonNT extends ModelZombie { public ModelSkeletonNT() { this(0.0F); } public ModelSkeletonNT(float scale) { super(scale, 0.0F, 64, 32); this.bipedRightArm = new ModelRenderer(this, 40, 16); this.bipedRightArm.addBox(-1.0F, -2.0F, -1.0F, 2, 12, 2, scale); this.bipedRightArm.setRotationPoint(-5.0F, 2.0F, 0.0F); this.bipedLeftArm = new ModelRenderer(this, 40, 16); this.bipedLeftArm.mirror = true; this.bipedLeftArm.addBox(-1.0F, -2.0F, -1.0F, 2, 12, 2, scale); this.bipedLeftArm.setRotationPoint(5.0F, 2.0F, 0.0F); this.bipedRightLeg = new ModelRenderer(this, 0, 16); this.bipedRightLeg.addBox(-1.0F, 0.0F, -1.0F, 2, 12, 2, scale); this.bipedRightLeg.setRotationPoint(-2.0F, 12.0F, 0.0F); this.bipedLeftLeg = new ModelRenderer(this, 0, 16); this.bipedLeftLeg.mirror = true; this.bipedLeftLeg.addBox(-1.0F, 0.0F, -1.0F, 2, 12, 2, scale); this.bipedLeftLeg.setRotationPoint(2.0F, 12.0F, 0.0F); } }