mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-02-17 21:37:50 +01:00
Improve Path preprocessing.
This commit is contained in:
parent
f9c45a2f3f
commit
cf1dcfcb7c
14 changed files with 209 additions and 246 deletions
|
|
@ -179,8 +179,6 @@ public class DebugTab : Window, ITab
|
|||
ImGui.NewLine();
|
||||
DrawData();
|
||||
ImGui.NewLine();
|
||||
DrawDebugTabMetaLists();
|
||||
ImGui.NewLine();
|
||||
DrawResourceProblems();
|
||||
ImGui.NewLine();
|
||||
DrawPlayerModelInfo();
|
||||
|
|
@ -788,23 +786,6 @@ public class DebugTab : Window, ITab
|
|||
}
|
||||
}
|
||||
|
||||
private void DrawDebugTabMetaLists()
|
||||
{
|
||||
if (!ImGui.CollapsingHeader("Metadata Changes"))
|
||||
return;
|
||||
|
||||
using var table = Table("##DebugMetaTable", 3, ImGuiTableFlags.SizingFixedFit);
|
||||
if (!table)
|
||||
return;
|
||||
|
||||
foreach (var list in _characterUtility.Lists)
|
||||
{
|
||||
ImGuiUtil.DrawTableColumn(list.GlobalMetaIndex.ToString());
|
||||
ImGuiUtil.DrawTableColumn(list.Entries.Count.ToString());
|
||||
ImGuiUtil.DrawTableColumn(string.Join(", ", list.Entries.Select(e => $"0x{e.Data:X}")));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary> Draw information about the resident resource files. </summary>
|
||||
private unsafe void DrawDebugResidentResources()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue