mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 13:57:59 +01:00
fixed some model positioning w/ Stocky body
- edited default neck position - edited sitting neck position - edited crouching neck position
This commit is contained in:
parent
cbb97c5f90
commit
a1e16238e2
1 changed files with 3 additions and 2 deletions
|
@ -50,9 +50,10 @@ public enum PonyTransformation {
|
||||||
|
|
||||||
switch (part) {
|
switch (part) {
|
||||||
case NECK:
|
case NECK:
|
||||||
stack.translate(0, -0.05F, -0.04F);
|
stack.translate(-0.015F, -0.05F, -0.04F);
|
||||||
stack.scale(1.4F, 1, 1.2F);
|
stack.scale(1.4F, 1, 1.2F);
|
||||||
if (model.getAttributes().isCrouching) stack.translate(-0.03F, 0.03F, 0.15F);
|
if (model.getAttributes().isCrouching) stack.translate(-0.025F, 0.03F, 0.15F);
|
||||||
|
if (model.getAttributes().isSitting) stack.translate(0, 0, 0.03F);
|
||||||
break;
|
break;
|
||||||
case HEAD:
|
case HEAD:
|
||||||
if (model.getAttributes().isLyingDown) stack.translate(0, -0.05F, 0);
|
if (model.getAttributes().isLyingDown) stack.translate(0, -0.05F, 0);
|
||||||
|
|
Loading…
Reference in a new issue