Skip to content

Commit

Permalink
Made asteroid clusters smaller in SSD preview.
Browse files Browse the repository at this point in the history
  • Loading branch information
thorwin99 committed Sep 11, 2021
1 parent 6bf005b commit be9bc8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ private void UpdateClusterSphereSize()

double size = m_data.Size * multiplier;

if (multiplier > 100)
if (multiplier > 30)
{
size = m_data.Size * 100;
size = m_data.Size * 30;
}
else if (size < m_data.Size / 2f)
{
Expand Down

0 comments on commit be9bc8a

Please sign in to comment.