Jump to content

[1.10] Transparent Block makes everything behind him also transparent


terraya

Recommended Posts

Hello Dear Forum,

 

I Updated yesterday my MOD to 1.10, i got in there a "Transparent" Block,

 

now after setting him on the ground it does everything transparent, i mean even the blocks

under him(you can look through).

 

http://www.fotos-hochladen.net/view/20161029103pb8wj1efqi.png

 

20161029103pb8wj1efqi.png

 

i think its a json file problem (Some ppl told me that json files are different now but im watchin the new ones and there is no difference, or am i blind?

 

blockstates.transparent64x64

{
"variants": {
	"normal": { "model": "blockupdate:transparent64x64" }
}
}

 

item.transparent64x64

{
"parent": "blockupdate:block/transparent64x64",
"display": {
	"thirdperson": {
		"rotation": [ 10, -45, 170],
		"translation": [ 0, 1.5, -2.75],
		"scale": [ 0.375, 0.375, 0.375]
	}
}
}

 

block.transparent64x64

{
"parent": "block/cube_all",
"textures": {
	"all": "blockupdate:block/transparent64x64"
}
}

Link to comment
Share on other sites

Show the Block class, maybe you are missing one of the isFullCube() or isFullyOpaque() methods

 

 

i dont think so,

 

i mean, its the same as in 1.8.9 i think

 

public class BlockUpdateGlassClass extends Block{

 public BlockUpdateGlassClass(String unlocalizedName, Material materialIn, float hardness, float resistance){
 super(materialIn);
 this.setUnlocalizedName(unlocalizedName);
 this.setCreativeTab(CreativeTabs.MATERIALS);
 this.setHardness(hardness);
 this.setResistance(resistance);
 }

public boolean isOpaqueCube() { 
	return false; }

    public boolean isFullCube() { 
    	return false; }

    @Override
    public boolean isVisuallyOpaque() { 
    	return false; }
    
    @Override
    public BlockRenderLayer getBlockLayer(){
        return BlockRenderLayer.TRANSLUCENT;
    }
}

Link to comment
Share on other sites

i think your opaque has to be true ?

 

if i understand correctly, your block is a glass block

and glass itself only has isFullCube set to false

 

 

dont work sadly, just tried it out :/, i playd around with the other options too but still isnt working

Link to comment
Share on other sites

already did , dont work either :/

 

Define "didn't work" because your method signatures are wrong.

 

	@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.

Link to comment
Share on other sites

public boolean isOpaqueCube(IBlockState state)

is not the same as

public boolean isOpaqueCube()

 

Minecraft uses the former.  You have the latter, it will never be called.

This is why you put @Override on it and Eclipse tells you to remove it. Removing it isn't the solution, fixing the method signature is.

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.

Link to comment
Share on other sites

public boolean isOpaqueCube(IBlockState state)

is not the same as

public boolean isOpaqueCube()

 

Minecraft uses the former.  You have the latter, it will never be called.

This is why you put @Override on it and Eclipse tells you to remove it. Removing it isn't the solution, fixing the method signature is.

 

 

alright, well it work now excellent with your method which you mention one up.

 

thank you very much!

Link to comment
Share on other sites

A method signature is part of the method declaration. It is the combination of the method name and the parameter list.

 

The reason for the emphasis on just the method name and parameter list is because of overloading. It's the ability to write methods that have the same name but accept different parameters. The Java compiler is able to discern the difference between the methods through their method signatures.

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.

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.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello all, I recently tried to upgrade my Minecraft mod to version 1.21.3, and I seem to have a problem with the `RenderSystem#setShaderColor` method. Here is how the screen is usually supposed to look like: Here is how it looks at present: To further explain, the note labels atop of the note buttons are colored cyan (here) using `RenderSystem#setShaderColor`. The note buttons and labels get their colors from their native texture - white. This means that even though I set the coloring to apply to the label (top), it is applied to the button (bottom). What I conclude is happening then, in essence, is that this method (at least for my case) does not color the blit after - but rather the blit before..?  This also blocks me from later resetting the shader, as I need to set it back to white before the blitting is done, and not when it's done. So like... what? I've tested this further with other components that require this method, and this preceding-like behavior seems to be pretty consistent for them too.   I should mention that all the snippets I am about to show have all worked in past versions. In my class `ClientUtil`, the following methods are defined: public static void setShaderColor(final Color color, final float alpha) { RenderSystem.setShaderColor( color.getRed() / 255f, color.getGreen() / 255f, color.getBlue() / 255f, alpha ); } public static void setShaderColor(final Color color) { setShaderColor(color, 1); } public static void resetShaderColor() { setShaderColor(Color.WHITE); } //... public static RenderType guiRT(final ResourceLocation loc) { return RenderType.guiTextured(loc); } And here is the snippet from `NoteButtonRenderer#renderNote` using it: // "Note" here refers to those symbols in the middle of a note button protected void renderNote(final GuiGraphics gui, final InstrumentThemeLoader themeLoader) { final int noteWidth = noteButton.getWidth()/2, noteHeight = noteButton.getHeight()/2; ClientUtil.setShaderColor((noteButton.isPlaying() && !foreignPlaying) ? themeLoader.notePressed() : themeLoader.noteReleased() ); gui.blit(ClientUtil::guiRT, noteTextureProvider.get(), noteButton.getX() + noteWidth/2, noteButton.getY() + noteHeight/2, 0, 0, noteWidth, noteHeight, noteWidth, noteButton.getHeight()/2 ); ClientUtil.resetShaderColor(); } You may find the full source here. The odd thing is that Minecraft does seem to use this method the regular way I showed, for instance `SkyRenderer#renderSkyDisc` (not sure if I'l allowed to paste it). Could it be that I'm doing something wrong that leads to this issue..? I'm really stumped on this one.  I couldn't really find any change logs or documentation for this rendering API (even in this Fabric blog post), so I'm sorry if this seems obvious or anything.  Either way, any help would be appreciated.
    • This did work. rip Quark Thank you
    • It says Quark Requires zeta. do i just remove Quark? https://mclo.gs/cq799kI
    • It refers to the mod elenaidodge Backup the world and make a test without it
    • Remove the mod Zeta   If you have further issues, add the new crash-report with sites like https://mclo.gs/ and paste the link to it here
  • Topics

×
×
  • Create New...

Important Information

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