本文整理匯總了Java中net.minecraft.entity.boss.EntityWither.canDestroyBlock方法的典型用法代碼示例。如果您正苦於以下問題:Java EntityWither.canDestroyBlock方法的具體用法?Java EntityWither.canDestroyBlock怎麽用?Java EntityWither.canDestroyBlock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.minecraft.entity.boss.EntityWither
的用法示例。
在下文中一共展示了EntityWither.canDestroyBlock方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: breakBlocks
import net.minecraft.entity.boss.EntityWither; //導入方法依賴的package包/類
public boolean breakBlocks(){
boolean flag = false;
AxisAlignedBB box=this.getBreakingBB();
for (int x = MathHelper.floor(box.minX); x <= MathHelper.floor(box.maxX); ++x)
for (int y = MathHelper.floor(box.minY); y <= MathHelper.floor(box.maxY); ++y)
for (int z = MathHelper.floor(box.minZ); z <= MathHelper.floor(box.maxZ); ++z) {
BlockPos blockpos = new BlockPos(x, y, z);
IBlockState iblockstate = this.world.getBlockState(blockpos);
Block block = iblockstate.getBlock();
if (!block.isAir(iblockstate, this.world, blockpos) && !iblockstate.getMaterial().isLiquid()
&& EntityWither.canDestroyBlock(block)
&& block.canEntityDestroy(iblockstate, world, blockpos, this))
flag = this.world.destroyBlock(blockpos, true) || flag;
}
if (flag)
this.world.playEvent((EntityPlayer) null, 1022, new BlockPos(this), 0);
return flag;
}
示例2: getExplosionResistance
import net.minecraft.entity.boss.EntityWither; //導入方法依賴的package包/類
/**
* Explosion resistance of a block relative to this entity
*/
public float getExplosionResistance(Explosion explosionIn, World worldIn, BlockPos pos, IBlockState blockStateIn)
{
float f = super.getExplosionResistance(explosionIn, worldIn, pos, blockStateIn);
Block block = blockStateIn.getBlock();
if (this.isInvulnerable() && EntityWither.canDestroyBlock(block))
{
f = Math.min(0.8F, f);
}
return f;
}