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