Add minimap back to planets

This commit is contained in:
Nick 2022-05-16 13:20:39 -04:00
parent 7594265835
commit fb13d5607e

View File

@ -11,7 +11,7 @@ namespace NewHorizons.Builder.Atmosphere
public static void Make(GameObject planetGO, IPlanetConfig config, float sphereOfInfluence) public static void Make(GameObject planetGO, IPlanetConfig config, float sphereOfInfluence)
{ {
var innerRadius = config.Base.SurfaceSize; var innerRadius = config.Base.SurfaceSize;
var useMiniMap = config.Base.IsSatellite; var useMiniMap = !config.Base.IsSatellite;
GameObject volumesGO = new GameObject("Volumes"); GameObject volumesGO = new GameObject("Volumes");
volumesGO.SetActive(false); volumesGO.SetActive(false);