fix species skin colors (#19417)

This commit is contained in:
Nemanja
2023-08-21 22:05:24 -04:00
committed by GitHub
parent 376521d818
commit 3f2ea17bb7
5 changed files with 15 additions and 7 deletions

View File

@@ -118,7 +118,7 @@ public static class SkinColor
public static Color TintedHues(Color color)
{
var newColor = Color.ToHsv(color);
newColor.Y = .1f;
newColor.Y *= 0.1f;
return Color.FromHsv(newColor);
}