From bdd86d7934e95ee1db54531b51431554d5b91796 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Thu, 28 Nov 2013 19:58:20 +0100 Subject: BiomeVisualiser: Added the TwoLevel biome generator. --- Tools/BiomeVisualiser/BiomeViewWnd.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Tools/BiomeVisualiser') diff --git a/Tools/BiomeVisualiser/BiomeViewWnd.cpp b/Tools/BiomeVisualiser/BiomeViewWnd.cpp index 459a4323c..8f8849663 100644 --- a/Tools/BiomeVisualiser/BiomeViewWnd.cpp +++ b/Tools/BiomeVisualiser/BiomeViewWnd.cpp @@ -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) -- cgit v1.2.3