本文整理汇总了Java中net.minecraft.world.chunk.Chunk.getLowestHeight方法的典型用法代码示例。如果您正苦于以下问题:Java Chunk.getLowestHeight方法的具体用法?Java Chunk.getLowestHeight怎么用?Java Chunk.getLowestHeight使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.world.chunk.Chunk
的用法示例。
在下文中一共展示了Chunk.getLowestHeight方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getChunksLowestHorizon
import net.minecraft.world.chunk.Chunk; //导入方法依赖的package包/类
/**
* Gets the lowest height of the chunk where sunlight directly reaches
*/
public int getChunksLowestHorizon(int x, int z)
{
if (x >= -30000000 && z >= -30000000 && x < 30000000 && z < 30000000)
{
if (!this.isChunkLoaded(x >> 4, z >> 4, true))
{
return 0;
}
else
{
Chunk chunk = this.getChunkFromChunkCoords(x >> 4, z >> 4);
return chunk.getLowestHeight();
}
}
else
{
return this.func_181545_F() + 1;
}
}
示例2: getChunksLowestHorizon
import net.minecraft.world.chunk.Chunk; //导入方法依赖的package包/类
@Deprecated
/**
* Gets the lowest height of the chunk where sunlight directly reaches
*/
public int getChunksLowestHorizon(int x, int z)
{
if (x >= -30000000 && z >= -30000000 && x < 30000000 && z < 30000000)
{
if (!this.isChunkLoaded(x >> 4, z >> 4, true))
{
return 0;
}
else
{
Chunk chunk = this.getChunkFromChunkCoords(x >> 4, z >> 4);
return chunk.getLowestHeight();
}
}
else
{
return this.getSeaLevel() + 1;
}
}
示例3: getChunksLowestHorizon
import net.minecraft.world.chunk.Chunk; //导入方法依赖的package包/类
/**
* Gets the lowest height of the chunk where sunlight directly reaches
*/
@Deprecated
public int getChunksLowestHorizon(int x, int z)
{
if (x >= -30000000 && z >= -30000000 && x < 30000000 && z < 30000000)
{
if (!this.isChunkLoaded(x >> 4, z >> 4, true))
{
return 0;
}
else
{
Chunk chunk = this.getChunkFromChunkCoords(x >> 4, z >> 4);
return chunk.getLowestHeight();
}
}
else
{
return this.getSeaLevel() + 1;
}
}