Jump to content

[1.6.4] Leaves glitch causing no texture to adjacent blocks?


Recommended Posts

Posted

Picture to show my problem - http://d.pr/i/JXer

 

I've made some leaves and I cant' figure out why it's causing this? It also makes the sound of stone when placing and walking on it, so I'm guessing the material is being set to material.stone, But I've definately set it to material.leaves?

 

public final static Block genericLeaf = new GenericLeaf(502, Material.leaves).setCreativeTab(CreativeTabs.tabBlock).setTextureName("basic:genericLeaf").setLightOpacity(1000).setLightValue(1.0F).setUnlocalizedName("genericLeaf");

 

 

Leaf class:

package kamber56.tutorial;

 

import net.minecraft.block.Block;

import net.minecraft.block.material.Material;

import net.minecraft.client.renderer.texture.IconRegister;

import net.minecraft.creativetab.CreativeTabs;

 

public class GenericLeaf extends Block {

 

        public GenericLeaf (int id, Material material) {

                super(id, material);

               

        }

 

}

Posted

In your leaf constructor where you put super(id, material); put setStepSound(Block.soundTypeLeaves); it will be similar

 

and in your block class put

 

@Override
public boolean isOpaqueCube()
{
      return false;
}

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.