net.minecraft.block.BlockOldLeaf Java Examples
The following examples show how to use
net.minecraft.block.BlockOldLeaf.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ItemBuildersWand.java From enderutilities with GNU Lesser General Public License v3.0 | 5 votes |
private void placeHelperBlock(EntityPlayer player) { BlockPos pos = PositionUtils.getPositionInfrontOfEntity(player); //player.worldObj.setBlockState(pos, Blocks.RED_MUSHROOM_BLOCK.getDefaultState(), 3); player.getEntityWorld().setBlockState(pos, Blocks.LEAVES.getDefaultState() .withProperty(BlockOldLeaf.VARIANT, BlockPlanks.EnumType.SPRUCE) .withProperty(BlockLeaves.CHECK_DECAY, false) .withProperty(BlockLeaves.DECAYABLE, true), 3); }
Example #2
Source File: Leaves.java From minecraft-roguelike with GNU General Public License v3.0 | 4 votes |
public static MetaBlock get(Wood type, boolean decay){ Block base = getBlockId(type); MetaBlock leaf = new MetaBlock(base); // Original minecraft leaves use a different variant property than // newer leaves like acacia and dark oak. if(base == Blocks.LEAVES){ leaf.withProperty(BlockOldLeaf.VARIANT, getType(type)); } else { leaf.withProperty(BlockNewLeaf.VARIANT, getType(type)); } leaf.withProperty(BlockLeaves.DECAYABLE, decay); return leaf; }