From 705b4d8dfd6370f608c8e513a4e2dbab27e22814 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Thu, 7 Apr 2022 10:57:32 -0700 Subject: [PATCH] DebugGui: tweak --- QSB/Utility/DebugGUI.cs | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/QSB/Utility/DebugGUI.cs b/QSB/Utility/DebugGUI.cs index bc222d8e..d230d47a 100644 --- a/QSB/Utility/DebugGUI.cs +++ b/QSB/Utility/DebugGUI.cs @@ -81,6 +81,12 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart return; } + DrawGui(); + DrawWorldObjectLabels(); + } + + private static void DrawGui() + { guiGUIStyle.normal.textColor = Color.white; GUI.contentColor = Color.white; @@ -89,12 +95,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart column3Offset = 10f; column4Offset = 10f; - DrawGui(); - DrawWorldObjectLabels(); - } - - private static void DrawGui() - { #region Column1 - Server data WriteLine(1, $"FPS : {Mathf.Round(1f / Time.smoothDeltaTime)}"); @@ -271,11 +271,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart foreach (var obj in QSBWorldSync.GetWorldObjects()) { - if (obj.AttachedObject == null) - { - return; - } - if (obj.ShouldDisplayDebug()) { DrawLabel(obj.AttachedObject.transform, obj.ReturnLabel()); @@ -294,11 +289,6 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart foreach (var obj in QSBWorldSync.GetWorldObjects()) { - if (obj.AttachedObject == null) - { - return; - } - if (obj.ShouldDisplayDebug()) { obj.DisplayLines();