mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Body overlay should be rendered before the tail.
This commit is contained in:
parent
b4cc5b161d
commit
e6ace54fb4
1 changed files with 3 additions and 3 deletions
|
@ -927,14 +927,14 @@ public abstract class AbstractPonyModel<T extends LivingEntity> extends ClientPo
|
||||||
*/
|
*/
|
||||||
protected void renderBody(T entity, float move, float swing, float ticks, float headYaw, float headPitch, float scale) {
|
protected void renderBody(T entity, float move, float swing, float ticks, float headYaw, float headPitch, float scale) {
|
||||||
body.render(scale);
|
body.render(scale);
|
||||||
|
if (textureHeight == 64) {
|
||||||
|
bodyOverlay.render(scale);
|
||||||
|
}
|
||||||
|
|
||||||
upperTorso.render(scale);
|
upperTorso.render(scale);
|
||||||
body.applyTransform(scale);
|
body.applyTransform(scale);
|
||||||
tail.renderPart(scale, entity.getUuid());
|
tail.renderPart(scale, entity.getUuid());
|
||||||
|
|
||||||
if (textureHeight == 64) {
|
|
||||||
bodyOverlay.render(scale);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void renderLegs(float scale) {
|
protected void renderLegs(float scale) {
|
||||||
|
|
Loading…
Reference in a new issue