public ChunkProviderDesertSector(World world, long seed, boolean mapFeaturesEnabled)
{
this.mapFeaturesEnabled = mapFeaturesEnabled;
this.world = world;
this.random = new Random(seed);
this.noiseGen1 = new NoiseGeneratorOctaves(this.random, 8);
// this.noiseGen2 = new NoiseGeneratorOctaves(this.random, 16);
// this.noiseGen3 = new NoiseGeneratorOctaves(this.random, 8);
this.noiseGen4 = new NoiseGeneratorOctaves(this.random, 4);
// this.noiseGen5 = new NoiseGeneratorOctaves(this.random, 10);
// this.noiseGen6 = new NoiseGeneratorOctaves(this.random, 16);
// this.mobSpawnerNoiseGen = new NoiseGeneratorOctaves(this.random, 8);
// for (int j = -2; j <= 2; ++j)
// {
// for (int k = -2; k <= 2; ++k)
// {
// float f = 10.0F / MathHelper.sqrt_float((float) (j * j + k * k) + 0.2F);
// this.parabolicField[j + 2 + (k + 2) * 5] = f;
// }
// }
}
ChunkProviderDesertSector.java 文件源码
java
阅读 23
收藏 0
点赞 0
评论 0
项目:CodeLyokoMod
作者:
评论列表
文章目录