Jump to content

[1.8] making semi transparent block


Failender

Recommended Posts

Hey folks,

I am triing to create a new type of air (toxic air), which means I need a block that will be semi transparent.

To do so I took a look at glass and how it does that.

I think that my solution lies in shouldSideBeRendered, but I feel like Im missing something.

I took the original method from the BlockBreakable class and removed some unnecessary checks, but its rendering as a full block.

The reason I dont extend BlockBreakable is because the method I want is hardcoded to work for glass.

 

package de.failender.shadowsrising.blocks;

import de.failender.shadowsrising.ShadowsRising;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class ToxicAir extends Block{

public ToxicAir() {
	super(Material.air);
	setCreativeTab(ShadowsRising.shadowTab);

}

public AxisAlignedBB getCollisionBoundingBox(World worldIn, BlockPos pos, IBlockState state)
    {
        return null;
    }

    public boolean isOpaqueCube()
    {
        return false;
    }

    public boolean canCollideCheck(IBlockState state, boolean hitIfLiquid)
    {
        return false;
    }
    
    @Override
    public boolean isReplaceable(World worldIn, BlockPos pos) {
    	return true;
    }
    public boolean shouldSideBeRendered(IBlockAccess worldIn, BlockPos pos, EnumFacing side)
    {
        IBlockState iblockstate = worldIn.getBlockState(pos);
        Block block = iblockstate.getBlock();

            if (worldIn.getBlockState(pos.offset(side.getOpposite())) != iblockstate)
            {
                return true;
            }

            if (block == this)
            {
                return false;
            }
        

        return block == this ? false : super.shouldSideBeRendered(worldIn, pos, side);
    }
}

Link to comment
Share on other sites

What is the problem that you are having?

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

The problem is in your json file.  Take a look at the json files for colored glass.

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

to be honest. im not sure whats the problem in there.

 

if i compare those jsons..

 

block models

 

 

{

    "parent": "block/cube_all",

    "textures": {

        "all": "shadowsrising:blocks/toxicair"

    }

}

 

 

 

 

 

{

    "parent": "block/cube_all",

    "textures": {

        "all": "blocks/glass_yellow"

    }

}

 

 

 

blockstates

 

 

{

    "variants": {

        "normal": { "model": "shadowsrising:toxicair"}

    }

}

 

 

 

 

 

{

    "variants": {

        "normal": { "model": "glass_yellow" }

    }

}

 

 

Link to comment
Share on other sites

If you look in BlockStainedGlass you will find this

    @SideOnly(Side.CLIENT)
    public EnumWorldBlockLayer getBlockLayer()
    {
        return EnumWorldBlockLayer.TRANSLUCENT;
    }

while in Normal Glass TRANSLUCENT is instead CUTOUT.

Add this to your block class and it should fix the problem you are having.

Did you really need to know?

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.

Announcements



×
×
  • Create New...

Important Information

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