Correct pony scaling

This commit is contained in:
Sollace 2018-07-22 16:31:38 +02:00
parent 8e663c81d3
commit 76a3f30f32

View file

@ -4,10 +4,10 @@ import com.minelittlepony.MineLittlePony;
import com.minelittlepony.transform.PonyTransformation; import com.minelittlepony.transform.PonyTransformation;
public enum PonySize implements ITriggerPixelMapped<PonySize> { public enum PonySize implements ITriggerPixelMapped<PonySize> {
NORMAL(0, 0.4f, 1f, PonyTransformation.NORMAL), TALL(0x534b76, 0.45f, 1.1F, PonyTransformation.TALL),
LARGE(0xce3254, 0.5f, 0.8f, PonyTransformation.LARGE), LARGE(0xce3254, 0.5f, 1, PonyTransformation.LARGE),
FOAL(0xffbe53, 0.25f, 0.8f, PonyTransformation.FOAL), NORMAL(0, 0.4f, 0.8F, PonyTransformation.NORMAL),
TALL(0x534b76, 0.45f, 1f, PonyTransformation.TALL); FOAL(0xffbe53, 0.25f, 0.8F, PonyTransformation.FOAL);
private int triggerValue; private int triggerValue;