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
6 changes: 5 additions & 1 deletion FFXIVClientStructs/FFXIV/Client/Graphics/Scene/VfxObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ public unsafe partial struct VfxObject {

[FieldOffset(0x1C0)] public int StaticTarget;

[FieldOffset(0x248)] public byte SomeFlags;
[FieldOffset(0x248)] public byte SomeFlags; // bit 0x40 is set to 1 when fadeout

[FieldOffset(0x250)] public float Speed;

[FieldOffset(0x258)] public float FadeOutFrames; // 1.0f = 1/60 s, not actually related with frame rate

[FieldOffset(0x260)] public Vector4 Color;

Expand Down
Loading