From ee1efa4d50e0b00326f5776d85792a454f7bc25c Mon Sep 17 00:00:00 2001 From: Joshua Thome Date: Thu, 14 Jul 2022 16:50:21 -0500 Subject: [PATCH] Get default ramps --- .../Components/SizeControllers/StarEvolutionController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs index 054ade43..698ae02d 100644 --- a/NewHorizons/Components/SizeControllers/StarEvolutionController.cs +++ b/NewHorizons/Components/SizeControllers/StarEvolutionController.cs @@ -66,14 +66,14 @@ namespace NewHorizons.Components.SizeControllers var supernovaSurfaceColorRamp = supernova._surface.sharedMaterial.GetTexture(ColorRamp); if (normalRamp == null) { - _normalRamp = supernovaSurfaceColorRamp; + _normalRamp = sun._startSurfaceMaterial.GetTexture(ColorRamp); } else { _normalRamp = normalRamp; } if (collapseRamp == null) { - _collapseRamp = supernovaSurfaceColorRamp; + _collapseRamp = sun._collapseStartSurfaceMaterial.GetTexture(ColorRamp); } else { _collapseRamp = collapseRamp;