Merge pull request #87 from TheWeatherPony/master

Friendlier Modifiers for external mod access
This commit is contained in:
­Sollace 2018-08-10 22:36:06 +02:00 committed by GitHub
commit b485f07d17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -33,11 +33,11 @@ import static com.minelittlepony.model.PonyModelConstants.*;
*/ */
public abstract class AbstractPonyModel extends ModelPlayer implements IModel { public abstract class AbstractPonyModel extends ModelPlayer implements IModel {
private boolean isSleeping; public boolean isSleeping;
private boolean isFlying; public boolean isFlying;
private boolean isElytraFlying; public boolean isElytraFlying;
private boolean isSwimming; public boolean isSwimming;
private boolean headGear; public boolean headGear;
/** /**
* Associcated pony data. * Associcated pony data.

View file

@ -100,7 +100,7 @@ public class PonyData implements IPonyData {
/** /**
* Parses an image buffer into a new IPonyData representing the values stored in it's individual trigger pixels. * Parses an image buffer into a new IPonyData representing the values stored in it's individual trigger pixels.
*/ */
static IPonyData parse(BufferedImage image) { public static IPonyData parse(BufferedImage image) {
return new PonyData(image); return new PonyData(image);
} }
} }

View file

@ -13,7 +13,7 @@ public class RenderPony<T extends EntityLivingBase> {
public ModelWrapper playerModel; public ModelWrapper playerModel;
private AbstractPonyModel ponyModel; protected AbstractPonyModel ponyModel;
private Pony pony; private Pony pony;

View file

@ -24,7 +24,7 @@ import javax.annotation.Nonnull;
// and is the whole reason we had this scaling bug in the first place. // and is the whole reason we had this scaling bug in the first place.
public abstract class RenderPonyMob<T extends EntityLiving> extends RenderLiving<T> implements IRenderPony<T> { public abstract class RenderPonyMob<T extends EntityLiving> extends RenderLiving<T> implements IRenderPony<T> {
protected final RenderPony<T> renderPony = new RenderPony<T>(this); protected RenderPony<T> renderPony = new RenderPony<T>(this);
public RenderPonyMob(RenderManager manager, ModelWrapper model) { public RenderPonyMob(RenderManager manager, ModelWrapper model) {
super(manager, model.getBody(), 0.5F); super(manager, model.getBody(), 0.5F);