2015-03-30 18:42:14 +02:00
|
|
|
package ellpeck.actuallyadditions.gadget;
|
|
|
|
|
|
|
|
import ellpeck.actuallyadditions.blocks.render.ModelBaseAA;
|
|
|
|
import net.minecraft.client.model.ModelRenderer;
|
|
|
|
|
|
|
|
public class ModelTorch extends ModelBaseAA{
|
|
|
|
|
|
|
|
public ModelRenderer s;
|
|
|
|
|
|
|
|
public ModelTorch(){
|
|
|
|
this.textureWidth = 64;
|
|
|
|
this.textureHeight = 32;
|
|
|
|
this.s = new ModelRenderer(this, 0, 0);
|
|
|
|
this.s.setRotationPoint(-1.0F, 14.0F, -1.0F);
|
|
|
|
this.s.addBox(0.0F, 0.0F, 0.0F, 2, 10, 2, 0.0F);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void render(float f){
|
|
|
|
this.s.render(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
2015-03-31 20:37:55 +02:00
|
|
|
return "modelHose";
|
2015-03-30 18:42:14 +02:00
|
|
|
}
|
|
|
|
}
|