public WorldChunkManager(long seed)
     : base(seed)
 {
     biomeCache = new BiomeCache(this);
     GenLayer[] agenlayer = GenLayer.func_35497_a(Seed);
     biomeIndexLayer = agenlayer[1];
     temperatureLayer = agenlayer[2];
     rainfallLayer = agenlayer[3];
 }
Example #2
0
 public WorldChunkManager(long seed)
     : base(seed)
 {
     biomeCache = new BiomeCache(this);
     GenLayer[] agenlayer = GenLayer.func_35497_a(Seed);
     biomeIndexLayer  = agenlayer[1];
     temperatureLayer = agenlayer[2];
     rainfallLayer    = agenlayer[3];
 }
Example #3
0
        public static GenLayer func_35515_a(long l, GenLayer genlayer, int i)
        {
            Object obj = genlayer;
            for (int j = 0; j < i; j++)
            {
                obj = new GenLayerZoom(l + (long)j, ((GenLayer)(obj)));
            }

            return ((GenLayer)(obj));
        }
        public static GenLayer func_35517_a(long l, GenLayer genlayer, int i)
        {
            Object obj = genlayer;

            for (int j = 0; j < i; j++)
            {
                obj = new GenLayerSmoothZoom(l + (long)j, ((GenLayer)(obj)));
            }

            return((GenLayer)(obj));
        }
Example #5
0
 public GenLayerZoom(long l, GenLayer genlayer)
     : base(l)
 {
     base.parent = genlayer;
 }
Example #6
0
 public GenLayerZoomFuzzy(long l, GenLayer genlayer)
     : base(l)
 {
     base.parent = genlayer;
 }
 public GenLayerSmoothZoom(long l, GenLayer genlayer)
     : base(l)
 {
     parent = genlayer;
 }
 public GenLayerSmoothZoom(long l, GenLayer genlayer)
     : base(l)
 {
     parent = genlayer;
 }
 public GenLayerZoomVoronoi(long l, GenLayer genlayer)
     : base(l)
 {
     base.parent = genlayer;
 }