Jump to content

What RenderType Do glass panes Use?


Azarsra

Recommended Posts

here is the block class: 

public class linaglass extends IronBarsBlock {

   public linaglass(BlockBehaviour.Properties p_56839_) {
      super(p_56839_);
      this.registerDefaultState(this.stateDefinition.any().setValue(NORTH, Boolean.valueOf(false)).setValue(EAST, Boolean.valueOf(false)).setValue(SOUTH, Boolean.valueOf(false)).setValue(WEST, Boolean.valueOf(false)).setValue(WATERLOGGED, Boolean.valueOf(false)));
   }

}

 

and here is the how I registered the RenderType:

 

    private void LinaClient(final FMLClientSetupEvent event) {
        

        ItemBlockRenderTypes.setRenderLayer(BlockInit.blockeeveelinaglass.get(), RenderType.translucent());
 

    }
    

Link to comment
Share on other sites

When I hover the crosshair over the glass, the glass pane outline appears, but it renders like a normal block, I tried translucent and cutoutMipped, non of these have worked.

Edited by Azarsra
Link to comment
Share on other sites

11 hours ago, Azarsra said:

When I hover the crosshair over the glass, the glass pane outline appears

i'm be able to reproduce this error, i have know idea why this happens but seems to be a bug with modded Blocks

11 hours ago, Azarsra said:

I tried translucent and cutoutMipped, non of these have worked.

both RenderTypes work how they should, are you sure your EventHandler is called?

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.