diff --git a/.idea.igem-quantifly/.idea/workspace.xml b/.idea.igem-quantifly/.idea/workspace.xml index 591d499..d408ec5 100644 --- a/.idea.igem-quantifly/.idea/workspace.xml +++ b/.idea.igem-quantifly/.idea/workspace.xml @@ -2,13 +2,9 @@ - - - - + + - - @@ -34,26 +30,26 @@ - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -66,14 +62,14 @@ - + - - + + @@ -290,12 +286,12 @@ - + - @@ -377,23 +373,23 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -418,23 +414,23 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -532,14 +528,14 @@ - + - - + + @@ -547,26 +543,26 @@ - - + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/Assets/Materials/Ground - Block.mat b/Assets/Materials/Ground - Block.mat index 3b8c134..a8ce1d1 100644 Binary files a/Assets/Materials/Ground - Block.mat and b/Assets/Materials/Ground - Block.mat differ diff --git a/Assets/Scenes/Main.unity b/Assets/Scenes/Main.unity index c093d36..dc1dc9c 100644 Binary files a/Assets/Scenes/Main.unity and b/Assets/Scenes/Main.unity differ diff --git a/Assets/Scripts/MapGeneration/CellularAutomaton.cs b/Assets/Scripts/MapGeneration/CellularAutomaton.cs index cf1717c..5ecf6c6 100644 --- a/Assets/Scripts/MapGeneration/CellularAutomaton.cs +++ b/Assets/Scripts/MapGeneration/CellularAutomaton.cs @@ -95,8 +95,6 @@ namespace Assets.Scripts.MapGeneration { for (var y = origin.Position.y - 1; y <= origin.Position.y + 1; y++) { - Debug.Log(string.Format("Processing cell {0}:{1}", x, y)); - if ((Math.Abs(x - origin.Position.x) > .1f || Math.Abs(y - origin.Position.y) > .1f) && IsInMapRange(map, (int) x, (int) y) && map[(uint) x, (uint) y] != origin.Type) { @@ -105,8 +103,6 @@ namespace Assets.Scripts.MapGeneration } } - Debug.Log(string.Format("{0}", ret.Count)); - return ret; } @@ -117,7 +113,6 @@ namespace Assets.Scripts.MapGeneration private static bool IsInMapRange(Map map, int x, int y) { - Debug.Log(string.Format("Is cell {0}:{1} in map range", x, y)); return (x >= 0 && x < map.Columns && y >= 0 && y < map.Rows); }