OpenMinecraft.InfdevHandler.Populate C# (CSharp) 메소드

Populate() 공개 메소드

public Populate ( int X, int Z ) : void
X int
Z int
리턴 void
        public override void Populate(int X, int Z)
        {
            BiomeType[,] biomes = _Generator.DetermineBiomes(ChunkScale, X, Z);
            IMapHandler mh = this;
            _Generator.AddTrees(ref mh, biomes, ref rand, X, Z, ChunkY);
            SaveAll();
        }
    }