mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 12:23:39 +01:00
Add Targets to TargetManager (#1364)
This commit is contained in:
parent
a12d9df9a2
commit
633894364d
3 changed files with 32 additions and 0 deletions
|
|
@ -63,6 +63,12 @@ internal class TargetWidget : IDataWindowWidget
|
|||
|
||||
if (targetMgr.SoftTarget != null)
|
||||
Util.PrintGameObject(targetMgr.SoftTarget, "SoftTarget", this.resolveGameData);
|
||||
|
||||
if (targetMgr.GPoseTarget != null)
|
||||
Util.PrintGameObject(targetMgr.GPoseTarget, "GPoseTarget", this.resolveGameData);
|
||||
|
||||
if (targetMgr.MouseOverNameplateTarget != null)
|
||||
Util.PrintGameObject(targetMgr.MouseOverNameplateTarget, "MouseOverNameplateTarget", this.resolveGameData);
|
||||
|
||||
if (ImGui.Button("Clear CT"))
|
||||
targetMgr.Target = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue