Skip to content

Commit

Permalink
Removed position variation limit for asteroids, since the sections no…
Browse files Browse the repository at this point in the history
…w looked to cubic
  • Loading branch information
8vogt committed Mar 4, 2021
1 parent 7c0fd7a commit 3c10a4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion SEWorldGenPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 3c10a4b

Please sign in to comment.