mirror of https://github.com/ppy/osu
Expose Spacing and UseFullGlyphHeight
This commit is contained in:
parent
5e3668b2ea
commit
9e7c388202
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue