mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-08-10 17:55:44 +00:00
30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
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);
|
|
}
|
|
}
|