Guest User

Untitled

a guest
Jun 21st, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. public class RenderDataCreature extends RenderBiped {
  2.  
  3.     ResourceLocation dataTexture;
  4.    
  5.     public RenderDataCreature() {
  6.         super(new ModelBiped(0), 0.5F);
  7.         this.dataTexture = new ResourceLocation(Main.MODID + ":" + "textures/entity/steve.png");
  8.         // TODO Auto-generated constructor stub
  9.     }
  10.    
  11.     @Override
  12.     protected ResourceLocation getEntityTexture(EntityLiving p_110775_1_) {
  13.         return this.dataTexture;
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment