mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat: show ToT in data window
This commit is contained in:
parent
4b676686ef
commit
1ae42607d3
1 changed files with 13 additions and 0 deletions
|
|
@ -937,7 +937,20 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
if (targetMgr.Target != null)
|
||||
{
|
||||
this.PrintGameObject(targetMgr.Target, "CurrentTarget");
|
||||
|
||||
ImGui.Text("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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue