fixed HUD buttons, added eastereggs, fixed object spawn, added coordinates, enabled new tutorial, v1.2.0

This commit is contained in:
Nicola Sovic
2022-04-12 14:18:37 +02:00
parent cb7541ce85
commit 0ce547fb74
10 changed files with 382 additions and 27 deletions

View File

@@ -118,14 +118,12 @@ public class NoiseGenerator
private float[] calculateSamplesPlane(GameObject tile)
{
float[] samples = calculateBasicSamples(tile);
Debug.Log("Plane");
return samples;
}
private float[] calculateSamplesForest(GameObject tile)
{
float[] samples = calculateBasicSamples(tile);
Debug.Log("Forest");
return samples;
}
@@ -149,7 +147,6 @@ public class NoiseGenerator
}
} while (true);
}
Debug.Log("Mountain");
return samples;
}
@@ -192,7 +189,6 @@ public class NoiseGenerator
}
}
Debug.Log("River");
return samples;
}
@@ -219,7 +215,6 @@ public class NoiseGenerator
}
}
}
Debug.Log("Lake");
return samples;
}