feat: show ToT in data window

This commit is contained in:
goat 2021-08-27 01:31:23 +02:00
parent 4b676686ef
commit 1ae42607d3
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -937,7 +937,20 @@ namespace Dalamud.Interface.Internal.Windows
if (targetMgr.Target != null) if (targetMgr.Target != null)
{ {
this.PrintGameObject(targetMgr.Target, "CurrentTarget"); this.PrintGameObject(targetMgr.Target, "CurrentTarget");
ImGui.Text("Target");
Util.ShowObject(targetMgr.Target); Util.ShowObject(targetMgr.Target);
var tot = targetMgr.Target.TargetObject;
if (tot != null)
{
ImGuiHelpers.ScaledDummy(10);
ImGui.Text("ToT");
Util.ShowObject(tot);
}
ImGuiHelpers.ScaledDummy(10);
} }
if (targetMgr.FocusTarget != null) if (targetMgr.FocusTarget != null)