Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions FFXIVClientStructs/FFXIV/Client/UI/AddonTalkSubtitle.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using FFXIVClientStructs.FFXIV.Component.GUI;

namespace FFXIVClientStructs.FFXIV.Client.UI;

// Client::UI::AddonTalkSubtitle
// Component::GUI::AtkUnitBase
// Component::GUI::AtkEventListener
[Addon("TalkSubtitle")]
[GenerateInterop]
[Inherits<AtkUnitBase>]
[StructLayout(LayoutKind.Explicit, Size = 0x2B0)]
public unsafe partial struct AddonTalkSubtitle {
[FieldOffset(0x238)] public Utf8String SubtitleText;
[FieldOffset(0x2A0)] public uint SubtitleMaxWidth;
[FieldOffset(0x2A4)] public float SubtitleScale;
[FieldOffset(0x2A8)] private bool Unk2A8; // If set, vf40 gets called when setting subtitle.
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is checked at ffxiv_dx11.exe+12C1F4B during OnRefresh to show the window

[FieldOffset(0x2A9)] private bool Unk2A9; // Checked and set in vf45 to call vf25.
}
Loading