OBJ Models for Incense Altar + Soul Forge render

TODO -

* Fix screwy rotation
* Fix z-fighting
* HellfireForge texture is broken
This commit is contained in:
Nick 2016-02-01 13:11:33 -08:00
parent b6bdd0740c
commit d60f07f1c0
9 changed files with 1108 additions and 41 deletions

View file

@ -22,6 +22,26 @@ public class BlockIncenseAltar extends BlockContainer
setHardness(2.0F);
setResistance(5.0F);
setHarvestLevel("pickaxe", 0);
setBlockBounds(0.3F, 0F, 0.3F, 0.72F, 1F, 0.72F);
}
@Override
public boolean isOpaqueCube()
{
return false;
}
@Override
public boolean isFullCube()
{
return false;
}
@Override
public boolean isVisuallyOpaque()
{
return false;
}
@Override