本文整理了Java中net.minecraft.block.Block.dropBlockAsItemWithChance()
方法的一些代码示例,展示了Block.dropBlockAsItemWithChance()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.dropBlockAsItemWithChance()
方法的具体详情如下:
包路径:net.minecraft.block.Block
类名称:Block
方法名:dropBlockAsItemWithChance
暂无
代码示例来源:origin: JurassiCraftTeam/JurassiCraft2
@Override
public void dropBlockAsItemWithChance(World world, BlockPos pos, IBlockState state, float chance, int fortune) {
if (this.encased) {
super.dropBlockAsItemWithChance(world, pos, state, chance, fortune);
}
}
代码示例来源:origin: AppliedEnergistics/Applied-Energistics-2
block.dropBlockAsItemWithChance( this.world, point, state, 1.0F / 1.0f, 0 );
代码示例来源:origin: TheGreyGhost/MinecraftByExample
@Override
public void dropBlockAsItemWithChance(World worldIn, BlockPos pos, IBlockState state, float chance, int fortune) {
StartupCommon.methodCallLogger.enterMethod("BlockToolTest.dropBlockAsItemWithChance",
"{world}, " + pos + ", " + String.valueOf(state) + ", " + chance + ", " + fortune);
super.dropBlockAsItemWithChance(worldIn, pos, state, chance, fortune);
StartupCommon.methodCallLogger.exitMethod("BlockToolTest.dropBlockAsItemWithChance", "");
return;
}
代码示例来源:origin: Darkhax-Minecraft/Bookshelf
public void destroyBlock (Block block, IBlockState state, BlockPos pos) {
if (this.doesDestroyBlocks()) {
if (block.canDropFromExplosion(this)) {
block.dropBlockAsItemWithChance(this.world, pos, this.world.getBlockState(pos), 1.0F / this.size, 0);
}
block.onBlockExploded(this.world, pos, this);
}
}
代码示例来源:origin: Alex-the-666/Ice_and_Fire
block.dropBlockAsItemWithChance(this.worldObj, blockpos, this.worldObj.getBlockState(blockpos), 1.0F / this.explosionSize, 0);
代码示例来源:origin: PrinceOfAmber/Cyclic
if (block.canDropFromExplosion(this)) {
block.dropBlockAsItemWithChance(this.world, blockpos, this.world.getBlockState(blockpos), 1.0F, 0);
代码示例来源:origin: ValkyrienWarfare/Valkyrien-Warfare-Revamped
block.dropBlockAsItemWithChance(this.worldObj, blockpos, this.worldObj.getBlockState(blockpos), 1.0F / this.explosionSize, 0);
代码示例来源:origin: ValkyrienWarfare/Valkyrien-Warfare-Revamped
block.dropBlockAsItemWithChance(this.worldObj, blockpos, this.worldObj.getBlockState(blockpos), 1.0F / this.explosionSize, 0);
代码示例来源:origin: Alex-the-666/Ice_and_Fire
block.dropBlockAsItemWithChance(this.worldObj, blockpos, this.worldObj.getBlockState(blockpos), 1.0F / this.explosionSize, 0);
代码示例来源:origin: ValkyrienWarfare/Valkyrien-Warfare-Revamped
if (!block.isAir(state, worldIn, (BlockPos) o) || ship.wrapping.explodedPositionsThisTick.contains(o)) {
if (block.canDropFromExplosion(expl)) {
block.dropBlockAsItemWithChance(ship.world, pos, state, 1.0F / expl.size, 0);
内容来源于网络,如有侵权,请联系作者删除!