Thank you. That worked. For others sake, here is an example of what I did:
Color color = Color.red;
Color outlineColor = Color.blue;
slot.SetColor(color);
if (slot.HasSecondColor)
{
slot.R2 = outlineColor.r;
slot.G2 = outlineColor.g;
slot.B2 = outlineColor.b;
}
Can you explain why there isn't simply something like Slot.SetColor(color, darkColor)
?