本文整理匯總了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;
}