Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package botCraft.client;
- import org.lwjgl.opengl.GL11;
- import botCraft.entities.EntityDrillBot;
- import net.minecraft.client.renderer.entity.Render;
- import net.minecraft.client.renderer.entity.RenderManager;
- import net.minecraft.entity.Entity;
- import net.minecraft.util.ResourceLocation;
- public class RenderDrillBot extends Render {
- private ModelDrillBot model;
- public RenderDrillBot() {
- shadowSize = 0.5F;
- }
- public static final ResourceLocation texture = new ResourceLocation("botcraft", "textures/models/DrillBot.png");
- public void renderBot(EntityDrillBot bot, double x, double y, double z, float yaw, float partialTickTime) {
- GL11.glPushMatrix();
- GL11.glTranslatef((float)x, (float)y, (float)z);
- GL11.glScalef(-1F, -1F, 1F);
- this.model = new ModelDrillBot(bot.getLocoRating(), bot.getDrillEfficiency());
- bindEntityTexture(bot);
- model.render(bot, bot.getDrill3Rotation(), bot.getBodyRotationAngle(), 0F, 0F, 0F, 0.0625F);
- GL11.glPopMatrix();
- }
- @Override
- public void doRender(Entity entity, double x, double y, double z, float yaw, float partialTickTime) {
- renderBot((EntityDrillBot)entity, x, y, z, yaw, partialTickTime);
- }
- @Override
- protected ResourceLocation getEntityTexture(Entity entity) {
- return texture;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement