some more texture work

This commit is contained in:
Modmuss50 2015-11-25 21:03:55 +00:00
parent f12725b4e0
commit 9f3622ea33
13 changed files with 253 additions and 107 deletions

View file

@ -6,10 +6,11 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import techreborn.Core;
import techreborn.blocks.BlockMachineBase;
import techreborn.blocks.IRotationTexture;
import techreborn.client.GuiHandler;
import techreborn.tiles.TileAesu;
public class BlockAesu extends BlockMachineBase {
public class BlockAesu extends BlockMachineBase implements IRotationTexture {
@ -55,4 +56,31 @@ public class BlockAesu extends BlockMachineBase {
// : (side == metadata ? this.iconFront : this.blockIcon));
// }
private final String prefix = "techreborn:/blocks/machine/";
@Override
public String getFrontOff() {
return prefix + "aesu_front";
}
@Override
public String getFrontOn() {
return prefix + "aesu_front";
}
@Override
public String getSide() {
return prefix + "aesu_side";
}
@Override
public String getTop() {
return prefix + "aesu_side";
}
@Override
public String getBottom() {
return prefix + "aesu_side";
}
}