Go go node models~

This commit is contained in:
WayofTime 2016-02-06 17:36:37 -05:00
parent f1621f1bce
commit 9d64a43ee4
22 changed files with 313 additions and 125 deletions

View file

@ -7,7 +7,10 @@ import net.minecraft.block.properties.PropertyBool;
import net.minecraft.block.state.BlockState;
import net.minecraft.block.state.IBlockState;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumWorldBlockLayer;
import net.minecraft.world.IBlockAccess;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import WayofTime.bloodmagic.BloodMagic;
public abstract class BlockRoutingNode extends BlockContainer
@ -39,6 +42,12 @@ public abstract class BlockRoutingNode extends BlockContainer
return false;
}
@SideOnly(Side.CLIENT)
public EnumWorldBlockLayer getBlockLayer()
{
return EnumWorldBlockLayer.TRANSLUCENT;
}
@Override
public boolean isFullCube()
{