mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-23 04:57:58 +01:00
Move normal transforms into its own method
This commit is contained in:
parent
aed1dbd8d3
commit
e657865305
1 changed files with 11 additions and 7 deletions
|
@ -778,17 +778,21 @@ public abstract class AbstractPonyModel extends ModelPlayer implements IModel {
|
|||
} else if (metadata.getSize() == PonySize.TALL) {
|
||||
transformTall(part);
|
||||
} else {
|
||||
if (isSleeping) translate(0, -0.61F, 0.25F);
|
||||
|
||||
switch (part) {
|
||||
case NECK:
|
||||
if (isCrouching()) translate(-0.03F, 0.03F, 0.1F);
|
||||
default:
|
||||
}
|
||||
transformNormal(part);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void transformNormal(BodyPart part) {
|
||||
if (isSleeping) translate(0, -0.61F, 0.25F);
|
||||
|
||||
switch (part) {
|
||||
case NECK:
|
||||
if (isCrouching()) translate(-0.03F, 0.03F, 0.1F);
|
||||
default:
|
||||
}
|
||||
}
|
||||
|
||||
private void transformTall(BodyPart part) {
|
||||
if (isSleeping) translate(0, -0.5F, 0.25F);
|
||||
|
||||
|
|
Loading…
Reference in a new issue