Adjust saddle position

This commit is contained in:
Sollace 2022-06-22 20:05:57 +02:00
parent 156d73f39a
commit a7e2f09d39

View file

@ -17,7 +17,7 @@ public class SaddleModel<T extends LivingEntity> extends EntityModel<T> {
@Override @Override
public void setAngles(T entity, float move, float swing, float ticks, float headYaw, float headPitch) { public void setAngles(T entity, float move, float swing, float ticks, float headYaw, float headPitch) {
root.pivotY = -MathHelper.cos(move * 1.5f) * 2.0f * swing; root.pivotY = 2 - MathHelper.cos(move * 1.5f) * 3.0f * swing;
} }
@Override @Override