Implement AGE text line spacing

This commit is contained in:
gamer147
2026-07-19 23:32:38 -04:00
parent b8928ec7b8
commit e0aae05f32
11 changed files with 90 additions and 17 deletions

View File

@@ -26,9 +26,10 @@ public readonly record struct AdvTextStyle(
long EffectColor,
int RenderMode,
int EffectOffsetX,
int EffectOffsetY)
int EffectOffsetY,
int LineSpacing)
{
public static AdvTextStyle Default => new(0, 0, false, 0, 0, 0, 0, 0);
public static AdvTextStyle Default => new(0, 0, false, 0, 0, 0, 0, 0, 6);
}
/// <summary>A stable snapshot of the layout state associated with a retained record.</summary>