本文整理汇总了Java中net.minecraft.util.MathHelper.func_154354_b方法的典型用法代码示例。如果您正苦于以下问题:Java MathHelper.func_154354_b方法的具体用法?Java MathHelper.func_154354_b怎么用?Java MathHelper.func_154354_b使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.util.MathHelper
的用法示例。
在下文中一共展示了MathHelper.func_154354_b方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getRandomChunkPosition
import net.minecraft.util.MathHelper; //导入方法依赖的package包/类
protected static BlockPos getRandomChunkPosition(World worldIn, int x, int z)
{
Chunk chunk = worldIn.getChunkFromChunkCoords(x, z);
int i = x * 16 + worldIn.rand.nextInt(16);
int j = z * 16 + worldIn.rand.nextInt(16);
int k = MathHelper.func_154354_b(chunk.getHeight(new BlockPos(i, 0, j)) + 1, 16);
int l = worldIn.rand.nextInt(k > 0 ? k : chunk.getTopFilledSegment() + 16 - 1);
return new BlockPos(i, l, j);
}
示例2: roundUp
import net.minecraft.util.MathHelper; //导入方法依赖的package包/类
public static int roundUp(int p_roundUp_0_, int p_roundUp_1_)
{
return MathHelper.func_154354_b(p_roundUp_0_, p_roundUp_1_);
}