diff --git a/Assets/GWConquest/Scenes/GalaxyMap.unity b/Assets/GWConquest/Scenes/GalaxyMap.unity index 38029eb..8a841ed 100644 --- a/Assets/GWConquest/Scenes/GalaxyMap.unity +++ b/Assets/GWConquest/Scenes/GalaxyMap.unity @@ -38,7 +38,7 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.007903649, g: 0.0044802446, b: 0.0041637, a: 1} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: @@ -12525,7 +12525,7 @@ GameObject: - component: {fileID: 197337108} m_Layer: 0 m_Name: ConnectionsCam - m_TagString: MainCamera + m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 @@ -39986,7 +39986,7 @@ Camera: m_Depth: -1 m_CullingMask: serializedVersion: 2 - m_Bits: 823 + m_Bits: 1847 m_RenderingPath: -1 m_TargetTexture: {fileID: 0} m_TargetDisplay: 0 @@ -59392,7 +59392,7 @@ GameObject: - component: {fileID: 978860181} m_Layer: 0 m_Name: SkyboxCam - m_TagString: MainCamera + m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 diff --git a/Assets/GWConquest/Scripts/UI/GalaxyMapUI.cs b/Assets/GWConquest/Scripts/UI/GalaxyMapUI.cs index c09eec1..da12574 100644 --- a/Assets/GWConquest/Scripts/UI/GalaxyMapUI.cs +++ b/Assets/GWConquest/Scripts/UI/GalaxyMapUI.cs @@ -57,6 +57,8 @@ namespace GWConquest PlanetFactionText.text = "Unaligned"; PlanetFactionText.color = Util.UpdateColorRGB(PlanetFactionText.color, Color.white); } + + FixedUpdate(); } else diff --git a/Assets/GWConquest/Scripts/UI/IngameUI.cs b/Assets/GWConquest/Scripts/UI/IngameUI.cs index 371f6d6..b177c50 100644 --- a/Assets/GWConquest/Scripts/UI/IngameUI.cs +++ b/Assets/GWConquest/Scripts/UI/IngameUI.cs @@ -239,14 +239,15 @@ namespace GWConquest viewedPlanet.AdditionalObjects.SetActive(false); } } - PlanetHud.gameObject.SetActive(true); + //PlanetHud.gameObject.SetActive(true); + PlanetHud.SelectPlanet(null); PlanetNames.SetActive(true); PlanetConnections.SetActive(true); viewedPlanet = null; PlanetViewEnabled = false; - PlanetHud.SelectPlanet(null); + }