End fish prototype

This commit is contained in:
paulevsGitch 2020-10-23 20:04:37 +03:00
parent df8e285757
commit 4237f5bdca
12 changed files with 152 additions and 11 deletions

View file

@ -0,0 +1,13 @@
package ru.betterend.entity;
import net.minecraft.client.model.ModelPart;
import net.minecraft.client.render.entity.model.EntityModel;
import net.minecraft.entity.Entity;
public abstract class BlockBenchModel<T extends Entity> extends EntityModel<T> {
protected void setRotationAngle(ModelPart modelRenderer, float x, float y, float z) {
modelRenderer.pitch = x;
modelRenderer.yaw = y;
modelRenderer.roll = z;
}
}