mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-21 20:18:01 +01:00
Missing @Overrides
This commit is contained in:
parent
48df23308b
commit
53ca978c34
1 changed files with 2 additions and 0 deletions
|
@ -39,11 +39,13 @@ public class PonyStandRenderer extends ArmorStandEntityRenderer {
|
|||
addFeature(new HeadFeatureRenderer<>(this, context.getModelLoader()));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void render(ArmorStandEntity entity, float entityYaw, float tickDelta, MatrixStack stack, VertexConsumerProvider renderContext, int lightUv) {
|
||||
this.model = isPonita(entity) ? pony : human;
|
||||
super.render(entity, entityYaw, tickDelta, stack, renderContext, lightUv);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void setupTransforms(ArmorStandEntity entity, MatrixStack stack, float f, float g, float h) {
|
||||
super.setupTransforms(entity, stack, f, g, h);
|
||||
if (isPonita(entity)) {
|
||||
|
|
Loading…
Reference in a new issue