UI HUGE UPDATE

This commit is contained in:
FloatGaming
2026-06-25 11:48:56 +08:00
parent bd2a06f4c7
commit b2a1e307a4
1806 changed files with 359863 additions and 20822 deletions
@@ -230,7 +230,26 @@ public class uBehaviourRaderController : MonoBehaviour
return;
}
uRaderObj.SetActive(!hideWhenOverlayVisible || !overlayVisible);
bool shouldShow = !hideWhenOverlayVisible || !overlayVisible;
bool wasActive = uRaderObj.activeSelf;
uRaderObj.SetActive(shouldShow);
if (shouldShow && !wasActive)
{
ForceRefreshChartBridge();
}
}
private void ForceRefreshChartBridge()
{
if (chartBridge == null)
{
return;
}
chartBridge.enabled = false;
chartBridge.enabled = true;
chartBridge.Refresh();
}
private void ApplySummary(BehaviourRadarSummary summary)