mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
39 lines
1.1 KiB
Java
39 lines
1.1 KiB
Java
/*
|
|
* This file ("ModelStandardBlock.java") is part of the Actually Additions Mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015 Ellpeck
|
|
*/
|
|
|
|
package ellpeck.actuallyadditions.gadget;
|
|
|
|
import ellpeck.actuallyadditions.blocks.render.ModelBaseAA;
|
|
import net.minecraft.client.model.ModelRenderer;
|
|
|
|
public class ModelStandardBlock extends ModelBaseAA{
|
|
|
|
public ModelRenderer s;
|
|
private String name;
|
|
|
|
public ModelStandardBlock(String name){
|
|
this.name = name;
|
|
this.textureWidth = 64;
|
|
this.textureHeight = 64;
|
|
this.s = new ModelRenderer(this, 0, 0);
|
|
this.s.setRotationPoint(-8.0F, 8.0F, -8.0F);
|
|
this.s.addBox(0.0F, 0.0F, 0.0F, 16, 16, 16, 0.0F);
|
|
}
|
|
|
|
@Override
|
|
public void render(float f){
|
|
this.s.render(f);
|
|
}
|
|
|
|
@Override
|
|
public String getName(){
|
|
return "model" + this.name;
|
|
}
|
|
}
|