fix positioning

This commit is contained in:
Mister_Nebula 2021-02-27 10:37:28 +00:00
parent 6f529786f6
commit 2c62f0dce3

View File

@ -150,7 +150,7 @@ namespace QSB
offset3 += _debugLineSpacing;
foreach (var obj in QSBSectorManager.Instance.SectorList)
{
GUI.Label(new Rect(660, offset3, 200f, 20f), $"- {obj.AttachedObject.name}");
GUI.Label(new Rect(420, offset3, 200f, 20f), $"- {obj.AttachedObject.name}");
offset3 += _debugLineSpacing;
}
@ -159,7 +159,7 @@ namespace QSB
offset2 += _debugLineSpacing;
foreach (var obj in QSBWorldSync.GetWorldObjects<IQSBQuantumObject>().Where(x => x.ControllingPlayer == QSBPlayerManager.LocalPlayerId))
{
GUI.Label(new Rect(440, offset2, 200f, 20f), $"- {(obj as IWorldObject).Name}");
GUI.Label(new Rect(620, offset2, 200f, 20f), $"- {(obj as IWorldObject).Name}");
offset2 += _debugLineSpacing;
}