Posted June 11, 201510 yr Hi. The title pretty much says it. It this possible? If so, how would I do that? i know it is probably something to do with ISimpleBlockRenderingHandler, but that's all I know.
June 13, 201510 yr Hi Just make a block which returns a blank texture for the five non-bottom faces http://greyminecraftcoder.blogspot.com.au/2013/07/rendering-standard-blocks-cubes.html If you want see the bottom texture from the top, just make your block extremely thin (max Y = minY) and return a top texture as well Alternatively, you could use ISimpleBlockRenderingHandler like you suggested. http://greyminecraftcoder.blogspot.com.au/2013/07/rendering-non-standard-blocks.html -TGG
June 13, 201510 yr So, using icons I can do this? @Override public IIcon getIcon(int side, int meta) { if (side == 0) return glyphs[meta]; return null; } Or will it work to return null for every side except for the bottom?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.