Use zero baseline for legacy sprite text display

This commit is contained in:
Dean Herbert 2024-08-15 13:07:42 +09:00
parent 8bfb5cedc4
commit 054366b25d
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public LegacyGlyphStore(string fontName, ISkin skin, Vector2? maxSize)
if (maxSize != null)
texture = texture.WithMaximumSize(maxSize.Value);
glyph = new TexturedCharacterGlyph(new CharacterGlyph(character, 0, 0, texture.Width, texture.Height, null), texture, 1f / texture.ScaleAdjust);
glyph = new TexturedCharacterGlyph(new CharacterGlyph(character, 0, 0, texture.Width, 0, null), texture, 1f / texture.ScaleAdjust);
}
cache[character] = glyph;