mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
Fixed sleeping floaters
This commit is contained in:
parent
828d04bf92
commit
0ae50ed2a0
1 changed files with 6 additions and 6 deletions
|
@ -14,7 +14,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.2F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.61F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.61F, 0.1F);
|
||||
if (model.isRiding()) translate(0, -0.2F, -0.2F);
|
||||
|
||||
switch (part) {
|
||||
|
@ -35,7 +35,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.15F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.98F, 0.2F);
|
||||
if (model.isSleeping()) translate(0, -0.6F, 0.15F);
|
||||
if (model.isRiding()) translate(0, 0, -0.2F);
|
||||
|
||||
switch (part) {
|
||||
|
@ -69,7 +69,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.15F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.98F, 0.2F);
|
||||
if (model.isSleeping()) translate(0, -0.6F, 0.25F);
|
||||
if (model.isRiding()) translate(0, 0, -0.2F);
|
||||
|
||||
switch (part) {
|
||||
|
@ -103,7 +103,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.3F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.6F, -0.5F);
|
||||
if (model.isSleeping()) translate(0, -0.65F, -0.3F);
|
||||
if (model.isRiding()) translate(0, -0.6F, -0.2F);
|
||||
|
||||
translate(0, 0.2F, 0);
|
||||
|
@ -132,7 +132,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.15F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.5F, 0.25F);
|
||||
if (model.isSleeping()) translate(0, -0.5F, 0.35F);
|
||||
if (model.isRiding()) translate(0, 0.1F, -0.2F);
|
||||
|
||||
switch (part) {
|
||||
|
@ -165,7 +165,7 @@ public enum PonyTransformation {
|
|||
@Override
|
||||
public void transform(IModel model, BodyPart part) {
|
||||
if (model.isCrouching()) translate(0, -0.15F, 0);
|
||||
if (model.isSleeping()) translate(0, -0.5F, 0.25F);
|
||||
if (model.isSleeping()) translate(0, -0.4F, -0.3F);
|
||||
if (model.isRiding()) translate(0, -0.4F, -0.2F);
|
||||
|
||||
switch (part) {
|
||||
|
|
Loading…
Reference in a new issue