net.minecraft.block.Block.dropBlockAsItemWithChance()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(130)

本文整理了Java中net.minecraft.block.Block.dropBlockAsItemWithChance()方法的一些代码示例,展示了Block.dropBlockAsItemWithChance()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Block.dropBlockAsItemWithChance()方法的具体详情如下:
包路径:net.minecraft.block.Block
类名称:Block
方法名:dropBlockAsItemWithChance

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);

相关文章

Block类方法