Posted February 15, 20187 yr I made a translucent block but when I placed it down it made the block below it transparent; Here it is | V Here's the block class -> https://pastebin.com/5A4HnBAx
February 15, 20187 yr @Override public boolean isOpaqueCube(IBlockState state) { return false; } @Override public boolean isFullCube(IBlockState state) { return false; } Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
February 15, 20187 yr 22 minutes ago, TastesLikeBleach said: Thanks alot, You're really good at this. Alot is better than you at everything Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
February 15, 20187 yr I had odd looking rendering for translucent objects for which the above was not sufficient. As I recall the translucent material (glass in my case) appeared opaque and nothing was seen through it. @Override public BlockRenderLayer getBlockLayer() { return BlockRenderLayer.TRANSLUCENT; }
February 15, 20187 yr 1 hour ago, jhdoran said: I had odd looking rendering for translucent objects for which the above was not sufficient. As I recall the translucent material (glass in my case) appeared opaque and nothing was seen through it. @Override public BlockRenderLayer getBlockLayer() { return BlockRenderLayer.TRANSLUCENT; } Yes, the original poster had that function overridden and returning the proper value already. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
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.