本文整理匯總了Java中net.minecraft.block.Block.isLeaves方法的典型用法代碼示例。如果您正苦於以下問題:Java Block.isLeaves方法的具體用法?Java Block.isLeaves怎麽用?Java Block.isLeaves使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.minecraft.block.Block
的用法示例。
在下文中一共展示了Block.isLeaves方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: isNotColliding
import net.minecraft.block.Block; //導入方法依賴的package包/類
/**
* Checks that the entity is not colliding with any blocks / liquids
*/
public boolean isNotColliding()
{
if (this.worldObj.checkNoEntityCollision(this.getEntityBoundingBox(), this) && this.worldObj.getCollisionBoxes(this, this.getEntityBoundingBox()).isEmpty() && !this.worldObj.containsAnyLiquid(this.getEntityBoundingBox()))
{
BlockPos blockpos = new BlockPos(this.posX, this.getEntityBoundingBox().minY, this.posZ);
if (blockpos.getY() < this.worldObj.getSeaLevel())
{
return false;
}
IBlockState iblockstate = this.worldObj.getBlockState(blockpos.down());
Block block = iblockstate.getBlock();
if (block == Blocks.GRASS || block.isLeaves(iblockstate, this.worldObj, blockpos.down()))
{
return true;
}
}
return false;
}
示例2: isReplaceable
import net.minecraft.block.Block; //導入方法依賴的package包/類
protected boolean isReplaceable(World world, int x, int y, int z) {
IBlockState state = world.getBlockState(new BlockPos(x, y, z));
Block block = state.getBlock();
return (block.isAir(state, world, new BlockPos(x, y, z))) || (block.isLeaves(state, world, new BlockPos(x, y, z))) || (block.isWood(world, new BlockPos(x, y, z))) || (func_150523_a(block));
}