mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-22 03:55:18 -04:00
Remove mostly useless cylinder/spheres map gen themes.
This commit is contained in:
parent
381cc3af58
commit
534940cdc0
@ -26,9 +26,7 @@ namespace MCGalaxy.Generator {
|
||||
MapGen.RegisterAdvancedGen("billow", GenBillow2D);
|
||||
MapGen.RegisterAdvancedGen("ridgedmultifractal", GenRidged2D);
|
||||
MapGen.RegisterAdvancedGen("perlin", GenPerlin2D);
|
||||
MapGen.RegisterAdvancedGen("checkerboard", GenCheckerboard);
|
||||
MapGen.RegisterAdvancedGen("spheres", GenSpheres);
|
||||
MapGen.RegisterAdvancedGen("cylinders", GenCylinders);
|
||||
MapGen.RegisterAdvancedGen("checkerboard", GenCheckerboard);
|
||||
MapGen.RegisterAdvancedGen("voronoi", GenVoronoi);
|
||||
MapGen.RegisterAdvancedGen("perlin3d", GenPerlin3D);
|
||||
MapGen.RegisterAdvancedGen("perlin3dyadjust", GenPerlin3DYAdjust);
|
||||
@ -60,14 +58,6 @@ namespace MCGalaxy.Generator {
|
||||
return Gen2D(args, new Checkerboard());
|
||||
}
|
||||
|
||||
static bool GenSpheres(MapGenArgs args) {
|
||||
return Gen2D(args, new Spheres());
|
||||
}
|
||||
|
||||
static bool GenCylinders(MapGenArgs args) {
|
||||
return Gen2D(args, new Cylinders());
|
||||
}
|
||||
|
||||
static bool GenVoronoi(MapGenArgs args) {
|
||||
Voronoi voronoi2D = new Voronoi();
|
||||
voronoi2D.Seed = args.UseSeed ? args.Seed : new Random().Next();
|
||||
|
Loading…
x
Reference in New Issue
Block a user