mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-21 18:40:03 +00:00
fix nres in debuggui
This commit is contained in:
parent
4884d9d8b9
commit
fd46b3864a
@ -136,8 +136,17 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
|||||||
}
|
}
|
||||||
|
|
||||||
WriteLine(1, $"Selected WorldObject : {(DebugActions.WorldObjectSelection == null ? "All" : DebugActions.WorldObjectSelection.Name)}");
|
WriteLine(1, $"Selected WorldObject : {(DebugActions.WorldObjectSelection == null ? "All" : DebugActions.WorldObjectSelection.Name)}");
|
||||||
WriteLine(1, $"Invincible : {Locator.GetDeathManager()._invincible}");
|
|
||||||
WriteLine(1, $"Tool Mode : {Locator.GetToolModeSwapper().GetToolMode()}");
|
if (Locator.GetDeathManager() != null)
|
||||||
|
{
|
||||||
|
WriteLine(1, $"Invincible : {Locator.GetDeathManager()._invincible}");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Locator.GetToolModeSwapper() != null)
|
||||||
|
{
|
||||||
|
WriteLine(1, $"Tool Mode : {Locator.GetToolModeSwapper().GetToolMode()}");
|
||||||
|
}
|
||||||
|
|
||||||
WriteLine(1, $"Input Mode Stack :");
|
WriteLine(1, $"Input Mode Stack :");
|
||||||
foreach (var item in OWInput.GetInputModeStack())
|
foreach (var item in OWInput.GetInputModeStack())
|
||||||
{
|
{
|
||||||
@ -158,7 +167,7 @@ internal class DebugGUI : MonoBehaviour, IAddComponentOnStart
|
|||||||
WriteLine(2, $"Dead : {player.IsDead}");
|
WriteLine(2, $"Dead : {player.IsDead}");
|
||||||
WriteLine(2, $"Ready : {player.IsReady}");
|
WriteLine(2, $"Ready : {player.IsReady}");
|
||||||
WriteLine(2, $"Suited Up : {player.SuitedUp}");
|
WriteLine(2, $"Suited Up : {player.SuitedUp}");
|
||||||
WriteLine(2, $"In Suited Up State : {player.AnimationSync.InSuitedUpState}");
|
WriteLine(2, $"In Suited Up State : {player.AnimationSync?.InSuitedUpState}");
|
||||||
WriteLine(2, $"InDreamWorld : {player.InDreamWorld}");
|
WriteLine(2, $"InDreamWorld : {player.InDreamWorld}");
|
||||||
|
|
||||||
if (player.IsReady && QSBWorldSync.AllObjectsReady)
|
if (player.IsReady && QSBWorldSync.AllObjectsReady)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user