Skip to content

Commit

Permalink
Remove excessive terrain brightening from EditorGrassFixer
Browse files Browse the repository at this point in the history
  • Loading branch information
siimav committed Jul 23, 2024
1 parent ca59161 commit cc24494
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/GrassSeasoner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ public static MapSO FindColorMap(CelestialBody body)
}
}

/// <summary>
/// Colors the terrain beyond the KSC facilities. The color of the statics is applied through KSCSwitcher.SetSite() instead.
/// </summary>
[KSPAddon(KSPAddon.Startup.EditorAny, false)]
public class EditorGrassFixer : MonoBehaviour
{
Expand All @@ -126,7 +129,7 @@ public void Start()
if (c.maxColorComponent == 0)
return;

material.color = c * 1.5f;
material.color = c;
Debug.Log($"[KSCSwitcher] editor grass fixer end");
}
}
Expand Down

0 comments on commit cc24494

Please sign in to comment.