mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 19:39:19 +01:00
Add support with Addon.Width and Addon.Height
Using Aers' AtkResNode struct from https://github.com/aers/FFXIVClientStructs/blob/main/Component/GUI/AtkResNode.cs
This commit is contained in:
parent
c589e223da
commit
066ab30acc
4 changed files with 54 additions and 1 deletions
|
|
@ -301,7 +301,7 @@ namespace Dalamud.Interface
|
|||
}
|
||||
|
||||
if (this.resultAddon != null) {
|
||||
ImGui.TextUnformatted($"{this.resultAddon.Name} - 0x{this.resultAddon.Address.ToInt64():x}\n v:{this.resultAddon.Visible} x:{this.resultAddon.X} y:{this.resultAddon.Y} s:{this.resultAddon.Scale}");
|
||||
ImGui.TextUnformatted($"{this.resultAddon.Name} - 0x{this.resultAddon.Address.ToInt64():x}\n v:{this.resultAddon.Visible} x:{this.resultAddon.X} y:{this.resultAddon.Y} s:{this.resultAddon.Scale}, w:{this.resultAddon.Width}, h:{this.resultAddon.Height}");
|
||||
}
|
||||
|
||||
if (ImGui.Button("Get Base UI object")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue