mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-13 19:37:44 +01:00
feat: add Util.ShowGameObjectStruct, switch target data viewer
This commit is contained in:
parent
2e20ee7a4a
commit
ca52a8c9e4
4 changed files with 34 additions and 12 deletions
|
|
@ -1019,15 +1019,16 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
this.PrintGameObject(targetMgr.Target, "CurrentTarget");
|
||||
|
||||
ImGui.Text("Target");
|
||||
Util.ShowObject(targetMgr.Target);
|
||||
Util.ShowGameObjectStruct(targetMgr.Target);
|
||||
|
||||
var tot = targetMgr.Target.TargetObject;
|
||||
if (tot != null)
|
||||
{
|
||||
ImGuiHelpers.ScaledDummy(10);
|
||||
|
||||
ImGui.Separator();
|
||||
ImGui.Text("ToT");
|
||||
Util.ShowObject(tot);
|
||||
Util.ShowGameObjectStruct(tot);
|
||||
}
|
||||
|
||||
ImGuiHelpers.ScaledDummy(10);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue