NaturesAura/src/main/java/de/ellpeck/naturesaura/entities/render/RenderMoverMinecart.java

51 lines
2.2 KiB
Java
Raw Normal View History

2019-01-22 16:10:27 +01:00
package de.ellpeck.naturesaura.entities.render;
import com.mojang.blaze3d.vertex.PoseStack;
import com.mojang.math.Vector3f;
2019-01-25 21:35:07 +01:00
import de.ellpeck.naturesaura.NaturesAura;
2019-01-22 16:10:27 +01:00
import de.ellpeck.naturesaura.entities.EntityMoverMinecart;
import net.minecraft.client.model.geom.ModelLayers;
import net.minecraft.client.renderer.MultiBufferSource;
import net.minecraft.client.renderer.entity.EntityRendererProvider;
2019-10-20 22:30:49 +02:00
import net.minecraft.client.renderer.entity.MinecartRenderer;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.level.block.state.BlockState;
2019-01-22 16:10:27 +01:00
2019-10-20 22:30:49 +02:00
public class RenderMoverMinecart extends MinecartRenderer<EntityMoverMinecart> {
2019-01-25 21:35:07 +01:00
private static final ResourceLocation RES = new ResourceLocation(NaturesAura.MOD_ID, "textures/models/mover_cart.png");
public RenderMoverMinecart(EntityRendererProvider.Context p_174300_) {
super(p_174300_, ModelLayers.MINECART);
2019-01-22 16:10:27 +01:00
}
//private final ModelMoverMinecart model = new ModelMoverMinecart();
2019-01-22 16:10:27 +01:00
@Override
protected void renderMinecartContents(EntityMoverMinecart entityIn, float partialTicks, BlockState stateIn, PoseStack matrixStackIn, MultiBufferSource bufferIn, int packedLightIn) {
matrixStackIn.pushPose();
matrixStackIn.translate(0, 22 / 16F, 0);
matrixStackIn.translate(0, 0, 1);
matrixStackIn.mulPose(Vector3f.XP.rotationDegrees(180));
//this.model.render(matrixStackIn, bufferIn.getBuffer(this.model.getRenderType(RES)), packedLightIn, OverlayTexture.NO_OVERLAY, 1, 1, 1, 1);
matrixStackIn.popPose();
2019-01-25 21:35:07 +01:00
}
// TODO model rendering
/* private static class ModelMoverMinecart extends Model {
2019-01-25 21:35:07 +01:00
private final ModelRenderer box;
2019-01-25 21:35:07 +01:00
public ModelMoverMinecart() {
2020-09-22 03:17:02 +02:00
super(RenderType::getEntityCutout);
this.box = new ModelRenderer(this, 0, 0);
2019-01-25 21:35:07 +01:00
this.box.setTextureSize(64, 64);
this.box.addBox(0, 0, 0, 16, 24, 16);
}
2019-01-22 16:10:27 +01:00
@Override
public void render(MatrixStack matrixStackIn, IVertexBuilder bufferIn, int packedLightIn, int packedOverlayIn, float red, float green, float blue, float alpha) {
this.box.render(matrixStackIn, bufferIn, packedLightIn, packedOverlayIn, red, green, blue, alpha);
2019-01-25 21:35:07 +01:00
}
}*/
2019-01-22 16:10:27 +01:00
}