use Color.white here too

This commit is contained in:
JohnCorby 2023-06-14 15:47:25 -07:00
parent 29fec52e58
commit a705dbc4a8

View File

@ -357,7 +357,7 @@ namespace NewHorizons.Builder.Body
foreach (var controller in solarFlareEmitter.GetComponentsInChildren<SolarFlareController>())
{
controller.GetComponent<MeshRenderer>().sharedMaterial = material;
controller._color = new Color(1, 1, 1);
controller._color = Color.white;
controller._tint = flareTint;
}
}