From 3c10a4b23b7a2b3fd160cb54861178369f648d4b Mon Sep 17 00:00:00 2001 From: 8vogt <8vogt@informatik.uni-hamburg.de> Date: Thu, 4 Mar 2021 20:17:16 +0100 Subject: [PATCH] Removed position variation limit for asteroids, since the sections now looked to cubic --- .../ProceduralGeneration/MyProceduralAsteroidsModule.cs | 2 +- SEWorldGenPlugin/Properties/AssemblyInfo.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SEWorldGenPlugin/Generator/ProceduralGeneration/MyProceduralAsteroidsModule.cs b/SEWorldGenPlugin/Generator/ProceduralGeneration/MyProceduralAsteroidsModule.cs index e8ec332..b95e6aa 100644 --- a/SEWorldGenPlugin/Generator/ProceduralGeneration/MyProceduralAsteroidsModule.cs +++ b/SEWorldGenPlugin/Generator/ProceduralGeneration/MyProceduralAsteroidsModule.cs @@ -263,7 +263,7 @@ protected override MyProceduralCell GenerateCellSeeds(Vector3I cellId) for (var it = new Vector3I_RangeIterator(ref Vector3I.Zero, ref max); it.IsValid(); it.GetNext(out subcellId)) { - Vector3D position = new Vector3D(MyRandom.Instance.NextDouble() / 2, MyRandom.Instance.NextDouble() / 2, MyRandom.Instance.NextDouble() / 2); + Vector3D position = new Vector3D(MyRandom.Instance.NextDouble(), MyRandom.Instance.NextDouble(), MyRandom.Instance.NextDouble()); position += (Vector3D)subcellId; position *= subCellSize; position += cellId * CELL_SIZE; diff --git a/SEWorldGenPlugin/Properties/AssemblyInfo.cs b/SEWorldGenPlugin/Properties/AssemblyInfo.cs index aab50f1..cf01090 100644 --- a/SEWorldGenPlugin/Properties/AssemblyInfo.cs +++ b/SEWorldGenPlugin/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, // indem Sie "*" wie unten gezeigt eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyVersion("2.0.2.0")] [assembly: AssemblyFileVersion("1.0.0")]