本文整理汇总了Java中cn.nukkit.level.format.FullChunk.setGenerated方法的典型用法代码示例。如果您正苦于以下问题:Java FullChunk.setGenerated方法的具体用法?Java FullChunk.setGenerated怎么用?Java FullChunk.setGenerated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cn.nukkit.level.format.FullChunk
的用法示例。
在下文中一共展示了FullChunk.setGenerated方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: generateChunk
import cn.nukkit.level.format.FullChunk; //导入方法依赖的package包/类
private void generateChunk(FullChunk chunk) {
chunk.setGenerated();
int c = Biome.getBiome(biome).getColor();
int R = c >> 16;
int G = (c >> 8) & 0xff;
int B = c & 0xff;
for (int Z = 0; Z < 16; ++Z) {
for (int X = 0; X < 16; ++X) {
chunk.setBiomeId(X, Z, biome);
chunk.setBiomeColor(X, Z, R, G, B);
for (int y = 0; y < 256; ++y) {
int k = this.structure[y][0];
int l = this.structure[y][1];
chunk.setBlock(X, y, Z, this.structure[y][0], this.structure[y][1]);
}
}
}
}