MineLittlePony/src/main/java/com/minelittlepony/model/ponies/ModelZombiePony.java

32 lines
1,013 B
Java
Raw Normal View History

package com.minelittlepony.model.ponies;
2015-08-02 00:36:33 +02:00
import com.minelittlepony.model.ModelMobPony;
2018-04-29 11:56:26 +02:00
import com.minelittlepony.render.AbstractPonyRenderer;
2015-08-02 00:36:33 +02:00
2018-06-03 16:38:03 +02:00
import net.minecraft.entity.Entity;
public class ModelZombiePony extends ModelMobPony {
2015-08-02 00:36:33 +02:00
@Override
2018-06-03 16:38:03 +02:00
protected void rotateLegs(float move, float swing, float ticks, Entity entity) {
super.rotateLegs(move, swing, ticks, entity);
if (rightArmPose != ArmPose.EMPTY) return;
2018-04-26 16:01:31 +02:00
if (islookAngleRight(move)) {
rotateArmHolding(bipedRightArm, 1, swingProgress, ticks);
2015-08-02 00:36:33 +02:00
} else {
rotateArmHolding(bipedLeftArm, -1, swingProgress, ticks);
2015-08-02 00:36:33 +02:00
}
}
2018-04-26 16:01:31 +02:00
2015-08-02 00:36:33 +02:00
@Override
protected void fixSpecialRotationPoints(float move) {
if (rightArmPose != ArmPose.EMPTY) return;
2018-04-26 16:01:31 +02:00
if (islookAngleRight(move)) {
2018-04-29 11:56:26 +02:00
AbstractPonyRenderer.shiftRotationPoint(bipedRightArm, 0.5F, 1.5F, 3);
} else {
2018-04-29 11:56:26 +02:00
AbstractPonyRenderer.shiftRotationPoint(bipedLeftArm, -0.5F, 1.5F, 3);
2015-08-02 00:36:33 +02:00
}
}
}