Make surface end color based on start color

This commit is contained in:
Joshua Thome 2022-07-14 19:02:23 -05:00
parent 3f4c71a935
commit d145e43a77

View File

@ -102,7 +102,7 @@ namespace NewHorizons.Components.SizeControllers
else else
{ {
_endColour = EndColour.ToColor(); _endColour = EndColour.ToColor();
_endSurfaceMaterial.color = _endColour; _endSurfaceMaterial.color = _startColour * 4.5948f;
} }
_heatVolume = GetComponentInChildren<HeatHazardVolume>(); _heatVolume = GetComponentInChildren<HeatHazardVolume>();