Catch up, several fixes and QoL.

This commit is contained in:
Max
2022-12-16 14:22:34 -06:00
parent 619b89d2a9
commit 1a86e670ca
18 changed files with 1137 additions and 1007 deletions

View File

@ -109,7 +109,7 @@ namespace RobloxFiles.Utility
return value;
}
public static Font GetFont(FontFace face)
public static Font GetLegacyFont(FontFace face)
{
var result = Font.Unknown;
@ -122,5 +122,10 @@ namespace RobloxFiles.Utility
return result;
}
public static bool TryGetFontFace(Font font, out FontFace face)
{
return FontFaces.TryGetValue(font, out face);
}
}
}