Available Methods
- AIR
- WATER
- DIRT
- LOG
- STONE
- GRASS
- SNOW_LAYER
- FARMLAND
- LEAVES
- tallgrass ( )
- netherrack ( )
- BEDROCK
- gold_ore ( )
- WEB
- STAINED_HARDENED_CLAY
- lava ( )
- vine ( )
- CHEST
- gold_block ( )
- cobblestone ( )
- ICE
- END_PORTAL
- emerald_block ( )
- stonebrick ( )
- fire ( )
- planks ( )
- lapis_block ( )
- trapped_chest ( )
- pumpkin ( )
- flowing_water ( )
- HOPPER
- SAND
- GRAVEL
- OBSIDIAN
- EMERALD_ORE
- hardened_clay ( )
- SAPLING
- LEAVES2 ( )
- FLOWING_LAVA
- LOG2 ( )
- end_stone ( )
- UNPOWERED_REPEATER
- bed ( )
- COAL_BLOCK
- CAKE
- LEVER
- quartz_ore ( )
- detector_rail ( )
- ender_chest ( )
- heavy_weighted_pressure_plate ( )
- DIAMOND_ORE
- iron_block ( )
- SNOW
- FURNACE
- STICKY_PISTON
- TORCH
- melon_block ( )
- wooden_door ( )
- LAPIS_ORE
- END_PORTAL_FRAME
- PISTON
- packed_ice ( )
- rail ( )
- MYCELIUM
- WOOL
- SOUL_SAND
Related Classes
- java.util.Arrays
- java.util.Random
- javax.annotation.Nullable
- javax.annotation.Nonnull
- net.minecraft.world.World
- net.minecraft.item.ItemStack
- net.minecraft.block.Block
- net.minecraft.client.Minecraft
- net.minecraft.item.Item
- net.minecraft.entity.Entity
- net.minecraft.entity.player.EntityPlayer
- net.minecraft.util.ResourceLocation
- net.minecraft.nbt.NBTTagCompound
- net.minecraft.tileentity.TileEntity
- net.minecraft.block.material.Material
- net.minecraft.entity.EntityLivingBase
- net.minecraft.init.Items
- net.minecraft.util.math.BlockPos
- net.minecraft.world.IBlockAccess
- net.minecraft.inventory.IInventory
- net.minecraftforge.fml.relauncher.Side
- net.minecraftforge.fml.common.eventhandler.SubscribeEvent
- net.minecraftforge.oredict.OreDictionary
- net.minecraft.util.EnumFacing
- net.minecraftforge.fml.relauncher.SideOnly
Java Code Examples for net.minecraft.init.Blocks#LOG2
The following examples show how to use
net.minecraft.init.Blocks#LOG2 .
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: EntityDabSquirrel.java From CommunityMod with GNU Lesser General Public License v2.1 | 6 votes |
/** * Called to update the entity's position/logic. */ @Override public void onUpdate() { super.onUpdate(); if (!this.world.isRemote) { boolean nearLog = false; for (EnumFacing facing : EnumFacing.values()) { BlockPos pos = this.getPosition().offset(facing); Block block = this.world.getBlockState(pos).getBlock(); if (block == Blocks.LOG || block == Blocks.LOG2) { nearLog = true; } } this.setBesideClimbableBlock((this.collidedHorizontally && nearLog) || (this.collidedHorizontally && this.climbTimeWithoutLog < 15)); if (this.collidedHorizontally && !nearLog) { this.climbTimeWithoutLog++; } else if (this.climbTimeWithoutLog > 0 || (this.collidedHorizontally && nearLog)) { this.climbTimeWithoutLog = 0; } } }
Example 2
Source File: GraveyardGenerator.java From ToroQuest with GNU General Public License v3.0 | 5 votes |
private boolean isGroundBlock(IBlockState blockState) { if (blockState == null || blockState.getBlock() == Blocks.LEAVES || blockState.getBlock() == Blocks.LEAVES2 || blockState.getBlock() == Blocks.LOG || blockState.getBlock() == Blocks.LOG2 || blockState.getBlock() instanceof BlockBush) { return false; } return blockState.isOpaqueCube(); }
Example 3
Source File: Log.java From minecraft-roguelike with GNU General Public License v3.0 | 5 votes |
public static Block getBlockId(Wood type){ switch(type){ case OAK: return Blocks.LOG; case SPRUCE: return Blocks.LOG; case BIRCH: return Blocks.LOG; case JUNGLE: return Blocks.LOG; case ACACIA: return Blocks.LOG2; case DARKOAK: return Blocks.LOG2; default: return Blocks.LOG; } }