Expose Spacing and UseFullGlyphHeight

This commit is contained in:
smoogipoo 2020-03-17 16:24:33 +09:00
parent 5e3668b2ea
commit 9e7c388202
1 changed files with 12 additions and 0 deletions

View File

@ -43,6 +43,18 @@ public ColourInfo GlowColour
set => blurredText.Colour = value;
}
public Vector2 Spacing
{
get => spriteText.Spacing;
set => spriteText.Spacing = blurredText.Spacing = value;
}
public bool UseFullGlyphHeight
{
get => spriteText.UseFullGlyphHeight;
set => spriteText.UseFullGlyphHeight = blurredText.UseFullGlyphHeight = value;
}
public GlowingSpriteText()
{
AutoSizeAxes = Axes.Both;