Posted February 22, 20214 yr I tried making a translucent block but what I tried didn't work: @SubscribeEvent public static void clientSetup(FMLClientSetupEvent event) { event.enqueueWork(() -> {RenderTypeLookup.setRenderLayer(ModBlocks.LARGE_QUARTZ_CRYSTAL.get(), RenderType.getTranslucent());}); } No errors it just didnt work
February 22, 20214 yr 6 hours ago, Megaton_216_ said: I tried making a translucent block but what I tried didn't work: you have to add notSolid to the block properties Edit: and do not use event.enqueueWork use: @SubscribeEvent private void doClientStuff(FMLClientSetupEvent event) { RenderTypeLookup.setRenderLayer(ModBlocks.TINTED_GLASS.get(), RenderType.getTranslucent()); } Edited February 22, 20214 yr by Luis_ST
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.