@Nullable
private StructureBoundingBox getBoundingBoxFromChunk(@Nullable ChunkPos pos)
{
if (pos == null)
{
return null;
}
else
{
int i = pos.chunkXPos * 16;
int j = pos.chunkZPos * 16;
return new StructureBoundingBox(i, 0, j, i + 16 - 1, 255, j + 16 - 1);
}
}
PlacementSettings.java 文件源码
java
阅读 21
收藏 0
点赞 0
评论 0
项目:CustomWorldGen
作者:
评论列表
文章目录