本文整理汇总了Java中net.minecraft.block.Block.getExplosionResistance方法的典型用法代码示例。如果您正苦于以下问题:Java Block.getExplosionResistance方法的具体用法?Java Block.getExplosionResistance怎么用?Java Block.getExplosionResistance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.block.Block
的用法示例。
在下文中一共展示了Block.getExplosionResistance方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: explodeBlock
import net.minecraft.block.Block; //导入方法依赖的package包/类
public float explodeBlock(World world, BlockPos pos, float power) {
if (world.isAirBlock(pos)) return power;
IBlockState state = world.getBlockState(pos);
Block block = state.getBlock();
if (block==Blocks.BEDROCK) return 0;
//Just delete fluids without examination or notification so their neighbors don't try to fill them in.
if (isFluid(block)) {
world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2 | 16);
return power;
}
float resistance = block.getExplosionResistance(world, pos, null, dummyExplosion);
if (resistance>power) return 0;
boolean drop = state.getBlock().canDropFromExplosion(dummyExplosion);
if (drop && world.rand.nextInt(1000)==5) {
block.dropBlockAsItem(world, pos, state, 0);
}
//block.onBlockExploded(world, pos, dummyExplosion); //Also calls onBlockDestroyedByExplosion
if (pos.getY()>4) {
world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2 | 16); //Observers are blinded by explosions or something
} else {
world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2 | 16); //Don't know if the chest bug still exists, but if it does we'll be safe with this line.
world.setBlockState(pos, Blocks.OBSIDIAN.getDefaultState(), 2 | 16); //If we're that strong, glass the crater floor.
}
return power - (int)(resistance*RESISTANCE_SCALE);
}
示例2: getBlockResist
import net.minecraft.block.Block; //导入方法依赖的package包/类
public static float getBlockResist(Block block) {
//return (Float)getValue(fBlockResist, block);
return block.getExplosionResistance(null) * 5;
}