mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-23 04:57:58 +01:00
Add missing @Override annotations
This commit is contained in:
parent
57206213c5
commit
f0453844a0
1 changed files with 5 additions and 0 deletions
|
@ -42,24 +42,29 @@ public class ModelSkeletonPony extends ModelMobPony {
|
||||||
super.setLivingAnimations(entity, move, swing, ticks);
|
super.setLivingAnimations(entity, move, swing, ticks);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected float getLegOutset() {
|
protected float getLegOutset() {
|
||||||
if (isSleeping()) return 2.6f;
|
if (isSleeping()) return 2.6f;
|
||||||
if (isCrouching()) return 0;
|
if (isCrouching()) return 0;
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected int getArmWidth() {
|
protected int getArmWidth() {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected int getArmDepth() {
|
protected int getArmDepth() {
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected float getLegRotationX() {
|
protected float getLegRotationX() {
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
protected float getArmRotationY() {
|
protected float getArmRotationY() {
|
||||||
return 8;
|
return 8;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue