mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 20:47:59 +01:00
Fixed folded wing rotation point to not detach it from the body whilst swinging
This commit is contained in:
parent
7a6a6716de
commit
96e429930b
2 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ public interface PonyModelConstants {
|
||||||
THIRDP_ARM_CENTRE_Y = 4,
|
THIRDP_ARM_CENTRE_Y = 4,
|
||||||
|
|
||||||
WING_FOLDED_RP_Y = 13,
|
WING_FOLDED_RP_Y = 13,
|
||||||
WING_FOLDED_RP_Z = -3,
|
WING_FOLDED_RP_Z = -2,
|
||||||
|
|
||||||
NECK_ROT_X = 0.166F,
|
NECK_ROT_X = 0.166F,
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ public class ModelWing {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void rotateWalking(float swing) {
|
public void rotateWalking(float swing) {
|
||||||
folded.rotateAngleY = swing * 0.2F;
|
folded.rotateAngleY = swing * 0.15F;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void rotateFlying(float angle) {
|
public void rotateFlying(float angle) {
|
||||||
|
|
Loading…
Reference in a new issue