Java Code Examples for net.minecraft.init.Blocks.tripwire()
The following are Jave code examples for showing how to use
tripwire() of the
net.minecraft.init.Blocks
class.
You can vote up the examples you like. Your votes will be used in our system to get
more good examples.
+ Save this method
Example 1
Project: DecompiledMinecraft File: BlockTripWire.java View Source Code | 6 votes |
private void notifyHook(World worldIn, BlockPos pos, IBlockState state) { for (EnumFacing enumfacing : new EnumFacing[] {EnumFacing.SOUTH, EnumFacing.WEST}) { for (int i = 1; i < 42; ++i) { BlockPos blockpos = pos.offset(enumfacing, i); IBlockState iblockstate = worldIn.getBlockState(blockpos); if (iblockstate.getBlock() == Blocks.tripwire_hook) { if (iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing.getOpposite()) { Blocks.tripwire_hook.func_176260_a(worldIn, blockpos, iblockstate, false, true, i, state); } break; } if (iblockstate.getBlock() != Blocks.tripwire) { break; } } } }
Example 2
Project: DecompiledMinecraft File: BlockTripWire.java View Source Code | 6 votes |
public static boolean isConnectedTo(IBlockAccess worldIn, BlockPos pos, IBlockState state, EnumFacing direction) { BlockPos blockpos = pos.offset(direction); IBlockState iblockstate = worldIn.getBlockState(blockpos); Block block = iblockstate.getBlock(); if (block == Blocks.tripwire_hook) { EnumFacing enumfacing = direction.getOpposite(); return iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing; } else if (block == Blocks.tripwire) { boolean flag = ((Boolean)state.getValue(SUSPENDED)).booleanValue(); boolean flag1 = ((Boolean)iblockstate.getValue(SUSPENDED)).booleanValue(); return flag == flag1; } else { return false; } }
Example 3
Project: DecompiledMinecraft File: BlockTripWire.java View Source Code | 6 votes |
private void notifyHook(World worldIn, BlockPos pos, IBlockState state) { for (EnumFacing enumfacing : new EnumFacing[] {EnumFacing.SOUTH, EnumFacing.WEST}) { for (int i = 1; i < 42; ++i) { BlockPos blockpos = pos.offset(enumfacing, i); IBlockState iblockstate = worldIn.getBlockState(blockpos); if (iblockstate.getBlock() == Blocks.tripwire_hook) { if (iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing.getOpposite()) { Blocks.tripwire_hook.func_176260_a(worldIn, blockpos, iblockstate, false, true, i, state); } break; } if (iblockstate.getBlock() != Blocks.tripwire) { break; } } } }
Example 4
Project: DecompiledMinecraft File: BlockTripWire.java View Source Code | 6 votes |
public static boolean isConnectedTo(IBlockAccess worldIn, BlockPos pos, IBlockState state, EnumFacing direction) { BlockPos blockpos = pos.offset(direction); IBlockState iblockstate = worldIn.getBlockState(blockpos); Block block = iblockstate.getBlock(); if (block == Blocks.tripwire_hook) { EnumFacing enumfacing = direction.getOpposite(); return iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing; } else if (block == Blocks.tripwire) { boolean flag = ((Boolean)state.getValue(SUSPENDED)).booleanValue(); boolean flag1 = ((Boolean)iblockstate.getValue(SUSPENDED)).booleanValue(); return flag == flag1; } else { return false; } }
Example 5
Project: BaseClient File: BlockTripWire.java View Source Code | 6 votes |
private void notifyHook(World worldIn, BlockPos pos, IBlockState state) { for (EnumFacing enumfacing : new EnumFacing[] {EnumFacing.SOUTH, EnumFacing.WEST}) { for (int i = 1; i < 42; ++i) { BlockPos blockpos = pos.offset(enumfacing, i); IBlockState iblockstate = worldIn.getBlockState(blockpos); if (iblockstate.getBlock() == Blocks.tripwire_hook) { if (iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing.getOpposite()) { Blocks.tripwire_hook.func_176260_a(worldIn, blockpos, iblockstate, false, true, i, state); } break; } if (iblockstate.getBlock() != Blocks.tripwire) { break; } } } }
Example 6
Project: BaseClient File: BlockTripWire.java View Source Code | 6 votes |
public static boolean isConnectedTo(IBlockAccess worldIn, BlockPos pos, IBlockState state, EnumFacing direction) { BlockPos blockpos = pos.offset(direction); IBlockState iblockstate = worldIn.getBlockState(blockpos); Block block = iblockstate.getBlock(); if (block == Blocks.tripwire_hook) { EnumFacing enumfacing = direction.getOpposite(); return iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing; } else if (block == Blocks.tripwire) { boolean flag = ((Boolean)state.getValue(SUSPENDED)).booleanValue(); boolean flag1 = ((Boolean)iblockstate.getValue(SUSPENDED)).booleanValue(); return flag == flag1; } else { return false; } }
Example 7
Project: BaseClient File: BlockTripWire.java View Source Code | 6 votes |
private void notifyHook(World worldIn, BlockPos pos, IBlockState state) { for (EnumFacing enumfacing : new EnumFacing[] {EnumFacing.SOUTH, EnumFacing.WEST}) { for (int i = 1; i < 42; ++i) { BlockPos blockpos = pos.offset(enumfacing, i); IBlockState iblockstate = worldIn.getBlockState(blockpos); if (iblockstate.getBlock() == Blocks.tripwire_hook) { if (iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing.getOpposite()) { Blocks.tripwire_hook.func_176260_a(worldIn, blockpos, iblockstate, false, true, i, state); } break; } if (iblockstate.getBlock() != Blocks.tripwire) { break; } } } }
Example 8
Project: BaseClient File: BlockTripWire.java View Source Code | 6 votes |
public static boolean isConnectedTo(IBlockAccess worldIn, BlockPos pos, IBlockState state, EnumFacing direction) { BlockPos blockpos = pos.offset(direction); IBlockState iblockstate = worldIn.getBlockState(blockpos); Block block = iblockstate.getBlock(); if (block == Blocks.tripwire_hook) { EnumFacing enumfacing = direction.getOpposite(); return iblockstate.getValue(BlockTripWireHook.FACING) == enumfacing; } else if (block == Blocks.tripwire) { boolean flag = ((Boolean)state.getValue(SUSPENDED)).booleanValue(); boolean flag1 = ((Boolean)iblockstate.getValue(SUSPENDED)).booleanValue(); return flag == flag1; } else { return false; } }
Example 9
Project: DecompiledMinecraft File: ItemShears.java View Source Code | 5 votes |
/** * Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic. */ public boolean onBlockDestroyed(ItemStack stack, World worldIn, Block blockIn, BlockPos pos, EntityLivingBase playerIn) { if (blockIn.getMaterial() != Material.leaves && blockIn != Blocks.web && blockIn != Blocks.tallgrass && blockIn != Blocks.vine && blockIn != Blocks.tripwire && blockIn != Blocks.wool) { return super.onBlockDestroyed(stack, worldIn, blockIn, pos, playerIn); } else { stack.damageItem(1, playerIn); return true; } }
Example 10
Project: DecompiledMinecraft File: ItemShears.java View Source Code | 5 votes |
/** * Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic. */ public boolean onBlockDestroyed(ItemStack stack, World worldIn, Block blockIn, BlockPos pos, EntityLivingBase playerIn) { if (blockIn.getMaterial() != Material.leaves && blockIn != Blocks.web && blockIn != Blocks.tallgrass && blockIn != Blocks.vine && blockIn != Blocks.tripwire && blockIn != Blocks.wool) { return super.onBlockDestroyed(stack, worldIn, blockIn, pos, playerIn); } else { stack.damageItem(1, playerIn); return true; } }
Example 11
Project: BaseClient File: ItemShears.java View Source Code | 5 votes |
/** * Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic. */ public boolean onBlockDestroyed(ItemStack stack, World worldIn, Block blockIn, BlockPos pos, EntityLivingBase playerIn) { if (blockIn.getMaterial() != Material.leaves && blockIn != Blocks.web && blockIn != Blocks.tallgrass && blockIn != Blocks.vine && blockIn != Blocks.tripwire && blockIn != Blocks.wool) { return super.onBlockDestroyed(stack, worldIn, blockIn, pos, playerIn); } else { stack.damageItem(1, playerIn); return true; } }
Example 12
Project: BaseClient File: ItemShears.java View Source Code | 5 votes |
/** * Called when a Block is destroyed using this Item. Return true to trigger the "Use Item" statistic. */ public boolean onBlockDestroyed(ItemStack stack, World worldIn, Block blockIn, BlockPos pos, EntityLivingBase playerIn) { if (blockIn.getMaterial() != Material.leaves && blockIn != Blocks.web && blockIn != Blocks.tallgrass && blockIn != Blocks.vine && blockIn != Blocks.tripwire && blockIn != Blocks.wool) { return super.onBlockDestroyed(stack, worldIn, blockIn, pos, playerIn); } else { stack.damageItem(1, playerIn); return true; } }
Example 13
Project: DecompiledMinecraft File: ItemShears.java View Source Code | 4 votes |
/** * Check whether this Item can harvest the given Block */ public boolean canHarvestBlock(Block blockIn) { return blockIn == Blocks.web || blockIn == Blocks.redstone_wire || blockIn == Blocks.tripwire; }
Example 14
Project: DecompiledMinecraft File: ItemShears.java View Source Code | 4 votes |
/** * Check whether this Item can harvest the given Block */ public boolean canHarvestBlock(Block blockIn) { return blockIn == Blocks.web || blockIn == Blocks.redstone_wire || blockIn == Blocks.tripwire; }
Example 15
Project: BaseClient File: ItemShears.java View Source Code | 4 votes |
/** * Check whether this Item can harvest the given Block */ public boolean canHarvestBlock(Block blockIn) { return blockIn == Blocks.web || blockIn == Blocks.redstone_wire || blockIn == Blocks.tripwire; }
Example 16
Project: BaseClient File: ItemShears.java View Source Code | 4 votes |
/** * Check whether this Item can harvest the given Block */ public boolean canHarvestBlock(Block blockIn) { return blockIn == Blocks.web || blockIn == Blocks.redstone_wire || blockIn == Blocks.tripwire; }