1
0

BiomeVisualiser: Added the TwoLevel biome generator.

This commit is contained in:
madmaxoft
2013-11-28 19:58:20 +01:00
parent 8acf0129e1
commit bdd86d7934
3 changed files with 233 additions and 0 deletions

View File

@@ -84,6 +84,10 @@ void cBiomeViewWnd::InitBiomeView(void)
{
m_BiomeGen = new cBioGenDistortedVoronoi(Seed);
}
else if (NoCaseCompare(BiomeGenName, "twolevel") == 0)
{
m_BiomeGen = new cBioGenTwoLevel(Seed);
}
else
{
if (NoCaseCompare(BiomeGenName, "multistepmap") != 0)