Hello! I seem to be having a pretty classic issue on my hands. I have a custom block, a tomato, that is rendering fine except for the bottom being kind of 'xray'.
To get it out of the way, here is my Github, and links to the JSON file and the BlockTomato class.
In my BlockTomato class, I have the usual fixes in place:
@Override
public boolean isFullCube(IBlockState state) {
return false;
}
&
@Override
public boolean isOpaqueCube(IBlockState state) {
return false;
}
Those don't seem to be helping any. I also have tried to adjust the bounding box, which isn't working.
When another person tried, it all worked fine for him (However, he was using 0.2555) I changed my forge version from 1.2586 to the recommended of 1.2555, but the issue is still here.
Not sure if this is a forge bug, or if I am doing something funny.