Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. package botCraft.client;
  2.  
  3. import org.lwjgl.opengl.GL11;
  4.  
  5. import botCraft.entities.EntityDrillBot;
  6. import net.minecraft.client.renderer.entity.Render;
  7. import net.minecraft.client.renderer.entity.RenderManager;
  8. import net.minecraft.entity.Entity;
  9. import net.minecraft.util.ResourceLocation;
  10.  
  11. public class RenderDrillBot extends Render {
  12.  
  13. private ModelDrillBot model;
  14.  
  15.  
  16. public RenderDrillBot() {
  17. shadowSize = 0.5F;
  18. }
  19.  
  20. public static final ResourceLocation texture = new ResourceLocation("botcraft", "textures/models/DrillBot.png");
  21.  
  22. public void renderBot(EntityDrillBot bot, double x, double y, double z, float yaw, float partialTickTime) {
  23. GL11.glPushMatrix();
  24. GL11.glTranslatef((float)x, (float)y, (float)z);
  25. GL11.glScalef(-1F, -1F, 1F);
  26.  
  27. this.model = new ModelDrillBot(bot.getLocoRating(), bot.getDrillEfficiency());
  28.  
  29. bindEntityTexture(bot);
  30.  
  31. model.render(bot, bot.getDrill3Rotation(), bot.getBodyRotationAngle(), 0F, 0F, 0F, 0.0625F);
  32.  
  33. GL11.glPopMatrix();
  34. }
  35.  
  36. @Override
  37. public void doRender(Entity entity, double x, double y, double z, float yaw, float partialTickTime) {
  38. renderBot((EntityDrillBot)entity, x, y, z, yaw, partialTickTime);
  39. }
  40.  
  41. @Override
  42. protected ResourceLocation getEntityTexture(Entity entity) {
  43. return texture;
  44. }
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement