Turn down by a lot

This commit is contained in:
Noah Pilarski 2022-07-14 19:30:42 -04:00
parent f7ca9af895
commit 8f63a67c84

View File

@ -222,7 +222,7 @@ namespace NewHorizons.Builder.Body
foreach (var controller in solarFlareEmitter.GetComponentsInChildren<SolarFlareController>()) foreach (var controller in solarFlareEmitter.GetComponentsInChildren<SolarFlareController>())
{ {
// It multiplies color by tint but wants something very bright idk // It multiplies color by tint but wants something very bright idk
controller._color = new Color(11, 11, 11); controller._color = new Color(2, 2, 2);
controller.GetComponent<MeshRenderer>().sharedMaterial.SetColor("_Color", controller._color); controller.GetComponent<MeshRenderer>().sharedMaterial.SetColor("_Color", controller._color);
controller._tint = flareTint; controller._tint = flareTint;
} }